mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-23 15:02:06 +08:00
a5cee30aa6
date: 2024-06-25T13:13:17
commit: 69a099242f
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
|