diff --git a/.devcontainer/setup.sh b/.devcontainer/setup.sh index a42f613..da54f5d 100755 --- a/.devcontainer/setup.sh +++ b/.devcontainer/setup.sh @@ -1,7 +1,9 @@ #!/usr/bin/env bash +set -e + sdk_file='qrypt-security-ubuntu.tgz' -curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file +curl -s https://qryptogateway.qrypt.com/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity rm -rf $sdk_file diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 831bea1..35a89ba 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -28,7 +28,7 @@ jobs: working-directory: ${{github.workspace}} run: | sdk_file='qrypt-security-ubuntu.tgz' - curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file + curl -s https://qryptogateway.qrypt.com/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity rm -rf $sdk_file diff --git a/compose/Dockerfile b/compose/Dockerfile index 76a6999..3ee747b 100644 --- a/compose/Dockerfile +++ b/compose/Dockerfile @@ -26,7 +26,7 @@ WORKDIR /workspace/ # Download SDK RUN sdk_file='qrypt-security-ubuntu.tgz' && \ - curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file && \ + curl -s https://qryptogateway.qrypt.com/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file && \ tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity && \ rm -rf $sdk_file