mirror of
https://github.com/penpot/penpot.git
synced 2025-05-20 20:36:46 +02:00
🚧 Helper script to prepare back dist
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
parent
0109c3ff1d
commit
c6b540868f
2 changed files with 18 additions and 22 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue