mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 15:47:53 -05:00
12 lines
194 B
Bash
12 lines
194 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "App Entrypoint"
|
||
|
|
||
|
if [ ! -f /runtime/.translations ]; then
|
||
|
echo "Generating intl/translations"
|
||
|
make translations
|
||
|
touch /runtime/.translations
|
||
|
fi
|
||
|
|
||
|
exec "$@"
|