Skip to content

Commit 850cd42

Browse files
authored
Update to new qryptogateway url (#59)
1 parent dbda7d4 commit 850cd42

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.devcontainer/setup.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env bash
22

3+
set -e
4+
35
sdk_file='qrypt-security-ubuntu.tgz'
4-
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
6+
curl -s https://qryptogateway.qrypt.com/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
57
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity
68
rm -rf $sdk_file
79

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
working-directory: ${{github.workspace}}
2929
run: |
3030
sdk_file='qrypt-security-ubuntu.tgz'
31-
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
31+
curl -s https://qryptogateway.qrypt.com/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file
3232
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity
3333
rm -rf $sdk_file
3434

compose/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ WORKDIR /workspace/
2626

2727
# Download SDK
2828
RUN sdk_file='qrypt-security-ubuntu.tgz' && \
29-
curl -s https://qrypt.azureedge.net/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file && \
29+
curl -s https://qryptogateway.qrypt.com/sdk/cpp/v0.11.23/qrypt-security-0.11.23-ubuntu.tgz --output $sdk_file && \
3030
tar -zxvf $sdk_file --strip-components=1 -C QryptSecurity && \
3131
rm -rf $sdk_file
3232

0 commit comments

Comments
 (0)