-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into icx-proxy-dev
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
"defaults": { | ||
"build": { | ||
"output": "build", | ||
"packtool": "mops sources" | ||
"packtool": "./mops-sources" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
for i in 0 2 4 8 16 32; do | ||
if [ $i -gt 0 ]; then | ||
echo "retrying in $i seconds" 1>&2 | ||
sleep $i | ||
fi | ||
|
||
if output=$(mops sources); then | ||
echo "$output" | ||
exit 0 | ||
fi | ||
echo "failed with output: $output" 1>&2 | ||
done | ||
exit 1 |