Skip to content

Commit b45b199

Browse files
devcontainers-botgithub-actions
andauthored
[Updates] Automated vendor dotnet-install script (#1098)
* Automated dotnet-install script update * Bump version --------- Co-authored-by: github-actions <[email protected]>
1 parent 5150fb9 commit b45b199

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

src/dotnet/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "dotnet",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"name": "Dotnet CLI",
55
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/dotnet",
66
"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.",

src/dotnet/scripts/vendor/dotnet-install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,10 @@ get_machine_architecture() {
331331
echo "riscv64"
332332
return 0
333333
;;
334+
powerpc|ppc)
335+
echo "ppc"
336+
return 0
337+
;;
334338
esac
335339
fi
336340

src/oryx/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "oryx",
3-
"version": "1.3.5",
3+
"version": "1.3.6",
44
"name": "Oryx",
55
"description": "Installs the oryx CLI",
66
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/oryx",

src/oryx/scripts/vendor/dotnet-install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,10 @@ get_machine_architecture() {
331331
echo "riscv64"
332332
return 0
333333
;;
334+
powerpc|ppc)
335+
echo "ppc"
336+
return 0
337+
;;
334338
esac
335339
fi
336340

0 commit comments

Comments
 (0)