mirror of
https://github.com/penpot/penpot.git
synced 2026-03-17 16:06:24 +00:00
9 lines
170 B
Bash
9 lines
170 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Synchronize static data..."
|
|
rsync -avr --delete ./resources/public/static/ ./data/static/
|
|
|
|
echo "Setting up UXBOX Backend..."
|
|
exec "$@"
|