Skip to content
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.

Commit

Permalink
Merge pull request #377 from digitalrebar/install-sh-uppdates
Browse files Browse the repository at this point in the history
fix: install.sh bad tests for workflow startup.
  • Loading branch information
galthaus committed Sep 24, 2020
2 parents 6dba4c5 + b6eef3b commit 3c508f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/install.sh
Expand Up @@ -980,7 +980,7 @@ EOF
fi

if [[ "$INITIAL_WORKFLOW" != "" ]] ; then
if [[ $CREATE_SELF ]] ; then
if [[ $CREATE_SELF == true ]] ; then
cp $(which drpcli) /tmp/jq
chmod +x /tmp/jq
ID=$(drpcli info get | /tmp/jq .id -r | sed -r 's/:/-/g')
Expand Down Expand Up @@ -1028,7 +1028,7 @@ EOF
fi

if [[ "$INITIAL_WORKFLOW" != "" ]] ; then
if [[ $CREATE_SELF ]] ; then
if [[ $CREATE_SELF == true ]] ; then
cp $(which drpcli) /tmp/jq
chmod +x /tmp/jq
ID=$(drpcli info get | /tmp/jq .id -r)
Expand Down

0 comments on commit 3c508f7

Please sign in to comment.