Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
snf-image
Commits
76009480
Commit
76009480
authored
Oct 06, 2011
by
Nikos Skalkotos
Browse files
Fix a bug in helper's common.sh
It's the same thing fixed in
9aac6898
in the host's code
parent
c6c35822
Changes
1
Hide whitespace changes
Inline
Side-by-side
snf-image-helper/common.sh
View file @
76009480
...
...
@@ -110,7 +110,10 @@ cleanup() {
sleep
$interval
$cmd
&&
break
done
test
$?
-eq
1
&&
{
echo
"Giving Up..."
;
exit
1
;
}
if
[
"
$?
"
!=
"0"
]
;
then
echo
"Giving Up..."
exit
1
;
fi
done
fi
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment