mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
48e178760c
* helper * remove count old-commit-hash: 2e7ed5bd88d5a1d07855e65553871b32e3b018fa
9 lines
119 B
Bash
Executable File
9 lines
119 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Loop something forever until it fails, for verifying new tests
|
|
|
|
while true; do
|
|
$@
|
|
done
|