mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 23:33:58 +08:00
Revert "Sync: `commaai/openpilot:master` into `sunnypilot/sunnypilot:master-n…"
This reverts commit e682957101.
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
|