mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 16:51:42 +03:00
15 lines
235 B
Bash
Executable File
15 lines
235 B
Bash
Executable File
#!/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"
|
|
|
|
cp lib/bip32.hoon $PIER/
|
|
echo "lib/bip32/hoon copied"
|