10 lines
227 B
Bash
10 lines
227 B
Bash
#!/bin/sh
|
|
if test ! -d above-the-waters
|
|
then
|
|
echo "You must run build.sh first" >&2
|
|
exit 1
|
|
fi
|
|
|
|
cp CC0 README above-the-waters/
|
|
zip -9 -r above-the-waters.zip above-the-waters
|
|
tar czvf above-the-waters.tar.gz above-the-waters
|