Skip to content

Commit

Permalink
fixed error in pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: pSchlarb <p.schlarb@esatus.com>
  • Loading branch information
pSchlarb committed Mar 28, 2023
1 parent 19da829 commit 3c6d425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/docker/node/installDeps.sh
@@ -1,11 +1,11 @@
#!/bin/bash
apt-get update -y
if [[ "${CALL_FROM_NODE}" == "\"yes\"" ]]; then
if [[ "${CALL_FROM_NODE}" == "yes" ]]; then
echo "node get Deps"
bash ./getDepsNode.sh ${EXTENTION_DEB}
fi

if [[ "${CALL_FROM_EXTENTION}" == "\"yes\"" ]]; then
if [[ "${CALL_FROM_EXTENTION}" == "yes" ]]; then
echo "sovrin get Deps"
bash ./getDeps.sh ${EXTENTION_DEB}
fi
Expand Down

0 comments on commit 3c6d425

Please sign in to comment.