Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiser committed Nov 15, 2023
1 parent f092fae commit 20d9e44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/deployments/validate_simcore_stack_yml.bash
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/bin/bash
set -o nounset
set -o pipefail
set -x
export COMPOSE_FILE=simcore_stack.yml
export SETTINGS_BINARY_PATH=/home/scu/.venv/bin
export SERVICES_PREFIX=${PREFIX_STACK_NAME}
Expand All @@ -11,8 +10,9 @@ python -c "import urllib.request,os,sys,urllib; f = open(os.path.basename(sys.ar
mv yq_linux_amd64 yq
chmod +x yq
_yq=$(realpath ./yq)
export _yq
# start
for service in $(_yq e '.services | keys | .[]' ${COMPOSE_FILE})
for service in $($_yq e '.services | keys | .[]' ${COMPOSE_FILE})
do
export TARGETNAME=${service#"${SERVICES_PREFIX}"_}
# continue if the service == director since it doesnt have settings
Expand Down

0 comments on commit 20d9e44

Please sign in to comment.