diff --git a/.devcontainer/on-create.sh b/.devcontainer/on-create.sh index ed604f31..e00955ec 100644 --- a/.devcontainer/on-create.sh +++ b/.devcontainer/on-create.sh @@ -15,8 +15,4 @@ else fi fi -if [ "$RADIUS_VERSION" = "edge" ]; then - wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash -s edge -else - wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash -fi +wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8b3853d5..1905fde2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -191,8 +191,8 @@ jobs: echo "Downloading rad CLI version ${{ inputs.version }}" wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash -s ${{ inputs.version }} else - echo "Downloading edge rad CLI" - wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash -s edge + echo "Downloading latest rad CLI" + wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash fi if [ $? -eq 0 ]; then