diff --git a/entrypoint.sh b/entrypoint.sh index 599b3cc..075f312 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,20 +3,8 @@ set -e export HOME="/github/workspace" -export NVM_DIR="/github/workspace/nvm" export WRANGLER_HOME="/github/workspace" -curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.0/install.sh | bash - -# Comments beginning with "shellcheck" use shellcheck, a shell script linter. -# The below comments ignore shellcheck linting on the instructions provided -# by NVM. - -# shellcheck source=/dev/null -[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" -# shellcheck source=/dev/null -[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" - mkdir -p "$HOME/.wrangler" chmod -R 770 "$HOME/.wrangler"