mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
20 lines
396 B
Bash
20 lines
396 B
Bash
#!/usr/bin/env bash
|
|
|
|
log() {
|
|
echo "[$(date +%Y-%m-%dT%H:%M:%S%:z)] $*"
|
|
}
|
|
|
|
#########################################
|
|
## App Frontend config
|
|
#########################################
|
|
|
|
update_flags() {
|
|
if [ -n "$PENPOT_FLAGS" ]; then
|
|
sed -i \
|
|
-e "s|^//var penpotFlags = .*;|var penpotFlags = \"$PENPOT_FLAGS\";|g" \
|
|
"$1"
|
|
fi
|
|
}
|
|
|
|
update_flags /var/www/app/js/config.js
|
|
exec "$@";
|