Skip to content

Commit

Permalink
[Updates] Automated vendor dotnet-install script (#1098)
Browse files Browse the repository at this point in the history
* Automated dotnet-install script update

* Bump version

---------

Co-authored-by: github-actions <[email protected]>
  • Loading branch information
devcontainers-bot and github-actions authored Aug 19, 2024
1 parent 5150fb9 commit b45b199
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dotnet/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "dotnet",
"version": "2.1.2",
"version": "2.1.3",
"name": "Dotnet CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet",
"description": "This Feature installs the latest .NET SDK, which includes the .NET CLI and the shared runtime. Options are provided to choose a different version or additional versions.",
Expand Down
4 changes: 4 additions & 0 deletions src/dotnet/scripts/vendor/dotnet-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ get_machine_architecture() {
echo "riscv64"
return 0
;;
powerpc|ppc)
echo "ppc"
return 0
;;
esac
fi

Expand Down
2 changes: 1 addition & 1 deletion src/oryx/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "oryx",
"version": "1.3.5",
"version": "1.3.6",
"name": "Oryx",
"description": "Installs the oryx CLI",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/oryx",
Expand Down
4 changes: 4 additions & 0 deletions src/oryx/scripts/vendor/dotnet-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ get_machine_architecture() {
echo "riscv64"
return 0
;;
powerpc|ppc)
echo "ppc"
return 0
;;
esac
fi

Expand Down

0 comments on commit b45b199

Please sign in to comment.