Skip to content

Commit

Permalink
Keep codacy happy
Browse files Browse the repository at this point in the history
This is not strictly required, since this is a sub script
that we source in the main script. But the static code
analysis tool complains, so let's fix it.

Signed-off-by: Shankari <[email protected]>
  • Loading branch information
shankari committed Nov 15, 2024
1 parent 9590cee commit 9eaccad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions citrineos/apply-patches.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash

CSMS_SP1_URL="ws://host.docker.internal:8082/cp001"
CSMS_SP2_URL="wss://host.docker.internal:8443/cp001"
CSMS_SP3_URL="wss://host.docker.internal:8444/cp001"
export CSMS_SP1_URL="ws://host.docker.internal:8082/cp001"
export CSMS_SP2_URL="wss://host.docker.internal:8443/cp001"
export CSMS_SP3_URL="wss://host.docker.internal:8444/cp001"
6 changes: 3 additions & 3 deletions maeve/apply-runtime-patches.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env bash

CSMS_SP1_URL="ws://host.docker.internal/ws/cp001"
CSMS_SP2_URL="wss://host.docker.internal/ws/cp001"
CSMS_SP3_URL="wss://host.docker.internal/ws/cp001"
export CSMS_SP1_URL="ws://host.docker.internal/ws/cp001"
export CSMS_SP2_URL="wss://host.docker.internal/ws/cp001"
export CSMS_SP3_URL="wss://host.docker.internal/ws/cp001"

if [[ "$DEMO_VERSION" =~ sp2 || "$DEMO_VERSION" =~ sp3 ]]; then
echo "Patching the CSMS to enable EVerest organization"
Expand Down

0 comments on commit 9eaccad

Please sign in to comment.