mirror of
https://github.com/kopia/kopia.git
synced 2026-01-06 05:27:59 -05:00
9 lines
115 B
Bash
Executable File
9 lines
115 B
Bash
Executable File
#!/bin/sh -e
|
|
for attempt in 1 2 3; do
|
|
echo "+ $@ (attempt $attempt)"
|
|
if "$@"; then
|
|
exit 0
|
|
fi
|
|
done
|
|
exit 1
|