mirror of
https://github.com/penpot/penpot.git
synced 2025-05-06 17:55:55 +02:00
8 lines
170 B
Bash
8 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 "$@"
|