Skip to content

Commit

Permalink
Fix missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-farache committed Jul 5, 2024
1 parent d8a5911 commit 9137d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/move2kube.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ PROJECT_ID=$(curl -X POST "${MOVE2KUBE_URL}/api/v1/workspaces/${WORKSPACE_ID}/pr

echo "Wait until M2K workflow is available in backstage..."
M2K_STATUS=$(curl -XGET -s -o /dev/null -w "%{http_code}" ${BACKSTAGE_URL}/api/orchestrator/workflows/m2k)
until [ $M2K_STATUS -eq 200 ]
until [ "$M2K_STATUS" -eq 200 ]
do
sleep 5
M2K_STATUS=$(curl -XGET -s -o /dev/null -w "%{http_code}" ${BACKSTAGE_URL}/api/orchestrator/workflows/m2k)
Expand Down

0 comments on commit 9137d2f

Please sign in to comment.