penpot/backend/scripts/prepare-release.sh
mathieu.brunot 06c830dd3c
💚 Change release command
Signed-off-by: mathieu.brunot <mb.mathieu.brunot@gmail.com>
2019-06-11 22:39:41 +02:00

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/;