mirror of
https://github.com/penpot/penpot.git
synced 2025-05-03 12:35:53 +02:00
10 lines
243 B
Bash
10 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/;
|