mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
32 lines
630 B
Bash
Executable File
32 lines
630 B
Bash
Executable File
#!/bin/bash
|
|
usage() { printf "Usage: $0 [-w] URBIT_PIER_DIRECTORY \n(-w: flag to watch and live copy code)\n" 1>&2; exit 1; }
|
|
|
|
if [ $# -eq 0 ]; then
|
|
usage
|
|
exit 2
|
|
fi
|
|
PIER=$1
|
|
EXCLUDE_FILE=ignore_files.txt
|
|
|
|
while getopts "w" opt; do
|
|
case ${opt} in
|
|
w) WATCH_MODE="true"
|
|
PIER=$2
|
|
;;
|
|
*) usage
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$WATCH_MODE" ]; then
|
|
echo "Installed %bippy"
|
|
rsync -r --exclude-from=$EXCLUDE_FILE * $PIER/
|
|
else
|
|
echo "Watching for changes to copy to ${PIER}..."
|
|
while [ 0 ]
|
|
do
|
|
sleep 0.8
|
|
rsync -r --exclude-from=$EXCLUDE_FILE * $PIER/
|
|
done
|
|
fi
|