mirror of
https://git.mills.io/prologic/zs.git
synced 2024-11-04 09:17:37 -05:00
14 lines
166 B
Plaintext
14 lines
166 B
Plaintext
|
#!/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
|