mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 23:49:45 -05:00
11 lines
243 B
Bash
11 lines
243 B
Bash
|
#!/usr/bin/env bash
|
||
|
rm -rf ../dist || exit 1;
|
||
|
|
||
|
rsync -avr \
|
||
|
--exclude="/test" \
|
||
|
--exclude="/resources/public/media" \
|
||
|
--exclude="/target" \
|
||
|
--exclude="/scripts" \
|
||
|
--exclude="/.*" \
|
||
|
../ ../dist/;
|