18 lines
502 B
Bash
18 lines
502 B
Bash
|
#!/bin/zsh
|
||
|
|
||
|
PREVIOUS_DIR=$(pwd)
|
||
|
DIR=${0:a:h}
|
||
|
SOURCE="$DIR/packages/browser-bundles/dist"
|
||
|
DESTINATION="/Users/asuk/Documents/Variable Font Tool/image-type-theatre/node_modules/@theatre/browser-bundles/dist"
|
||
|
DESTINATION="jrkb@nature.fritz.box:/home/jrkb/openFrameworks/apps/celinesTypeGarden/msdf-theatre/bin/data/web/node_modules/@theatre/browser-bundles/dist"
|
||
|
|
||
|
cd $DIR
|
||
|
yarn build
|
||
|
|
||
|
rsync -raz --progress $SOURCE/ $DESTINATION/
|
||
|
|
||
|
# rm -rf "$DESTINATION"
|
||
|
# cp -r "$SOURCE" "$DESTINATION"
|
||
|
|
||
|
cd $PREVIOUS_DIR
|