mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-09 03:32:54 -05:00
14 lines
383 B
Bash
14 lines
383 B
Bash
#!/bin/sh
|
|
|
|
#####################################################
|
|
# This startup script is used by the docker container
|
|
# to check if the node_modules folder is empty and
|
|
# if so, run yarn to install the dependencies.
|
|
#####################################################
|
|
|
|
if [ ! -d "node_modules" ] || [ "$(ls -A node_modules)" = "" ]; then
|
|
yarn
|
|
fi
|
|
|
|
BROWSER=0 yarn start:browser
|