mirror of
https://github.com/ivabus/pantry
synced 2024-11-27 02:35:08 +03:00
8 lines
93 B
Bash
8 lines
93 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
for x in $(scripts/ls.ts); do
|
||
|
scripts/test.ts $x --magic
|
||
|
done
|