🚧 Helper script to prepare back dist

Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
mathieu.brunot 2019-06-23 18:47:33 +02:00
parent 0109c3ff1d
commit c6b540868f
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0
2 changed files with 18 additions and 22 deletions

View file

@ -1,5 +1,10 @@
#!/usr/bin/env bash
rm -rf ../dist || exit 1;
if [ ! -d "$1" ] || [ ! -d "$2" ]; then
echo "Expecting path to backend and destination directory"
exit 1
fi
rm -rf $2 || exit 1;
rsync -avr \
--exclude="/test" \
@ -7,4 +12,4 @@ rsync -avr \
--exclude="/target" \
--exclude="/scripts" \
--exclude="/.*" \
../ ../dist/;
$1 $2;