mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-26 17:15:08 +00:00
10 lines
288 B
Bash
Executable file
10 lines
288 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Link Frappe's node_modules/ to make Website Theme work
|
|
if test -d /home/frappe/frappe-bench/sites/assets/frappe/node_modules; then
|
|
ln -sfn /home/frappe/frappe-bench/sites/assets/frappe/node_modules /home/frappe/frappe-bench/apps/frappe/node_modules
|
|
fi
|
|
|
|
exec "$@"
|