Skip to content
Snippets Groups Projects
Commit 0b92372b authored by Walter Lozano's avatar Walter Lozano
Browse files

Fix condition relaying on bash


Since there is no need to rely on bash try to make the script more
compatible.

Signed-off-by: default avatarWalter Lozano <walter.lozano@collabora.com>
parent 7c5cfc27
No related branches found
No related tags found
1 merge request!236Extend rebase scripts
......@@ -68,7 +68,7 @@ then
# Check fork status to ensure the forking id completed.
# Forking is an asynchronous process...
FORKING_DONE=0
while [ $FORKING_DONE == 0 ]
while [ $FORKING_DONE = 0 ]
do
sleep 2
curl_get ${GITLAB_API}/projects/${PRJ_ID}/import > import.log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment