shrub/install-zuse.sh

12 lines
180 B
Bash
Raw Normal View History

2020-11-26 12:38:30 +03:00
#!/bin/bash
usage() { printf "Usage: $0 URBIT_PIER_DIRECTORY \n" 1>&2; exit 1; }
if [ $# -eq 0 ]; then
usage
exit 2
fi
PIER=$1
cp sys/zuse.hoon $PIER/
echo "zuse copied"