We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e3e56e commit 05f35e9Copy full SHA for 05f35e9
1 file changed
rootfs/home/cloud-compose/profile.sh
@@ -15,8 +15,8 @@ retry_until_success() {
15
local RETRIES=0
16
17
while true; do
18
- timeout 300 "${command_to_run[@]}"
19
- local exit_code=$?
+ exit_code=0
+ timeout 300 "${command_to_run[@]}" || exit_code=$?
20
21
if [ "$exit_code" -eq 0 ]; then
22
return 0
0 commit comments