zs/testdata/update

14 lines
166 B
Plaintext
Raw Permalink Normal View History

2023-03-16 08:20:30 +00:00
#!/bin/bash
set -e
for d in *; do
if [ -d "$d" ]; then
pushd "$d" || exit 1
rm -rf .pub .test
zs build
mv .pub .test
popd || exit 1
fi
done