diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3a7de301..d5ba407f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -23,6 +23,5 @@ "vadimcn.vscode-lldb" ] } - }, - "onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/ubuntu/onCreateCommand.sh" + } } diff --git a/.devcontainer/fedora/devcontainer.json b/.devcontainer/fedora/devcontainer.json index baee00dd..f2d3dee6 100644 --- a/.devcontainer/fedora/devcontainer.json +++ b/.devcontainer/fedora/devcontainer.json @@ -25,6 +25,5 @@ ] } }, - "remoteUser": "vscode", - "onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/fedora/onCreateCommand.sh" + "remoteUser": "vscode" } diff --git a/.devcontainer/fedora/onCreateCommand.sh b/.devcontainer/fedora/onCreateCommand.sh deleted file mode 100755 index 2fc676c0..00000000 --- a/.devcontainer/fedora/onCreateCommand.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash -set -e - -sudo dnf install -y dnf-plugins-core cargo @c-development @rpm-development-tools rpkg gh - -# Setup Rust toolchain for wasm-pack -rustup default stable -bun run setup \ No newline at end of file diff --git a/.devcontainer/ubuntu/devcontainer.json b/.devcontainer/ubuntu/devcontainer.json index e30ffe29..1b6d8bfa 100644 --- a/.devcontainer/ubuntu/devcontainer.json +++ b/.devcontainer/ubuntu/devcontainer.json @@ -24,6 +24,5 @@ ] } }, - "remoteUser": "vscode", - "onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/ubuntu/onCreateCommand.sh" + "remoteUser": "vscode" } diff --git a/.devcontainer/ubuntu/onCreateCommand.sh b/.devcontainer/ubuntu/onCreateCommand.sh deleted file mode 100755 index d5a4959a..00000000 --- a/.devcontainer/ubuntu/onCreateCommand.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -set -e - -# Setup Rust toolchain for wasm-pack -rustup default stable -bun run setup \ No newline at end of file