7 lines
127 B
Bash
Executable file
7 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
|
|
npm install
|
|
|
|
if [ ! -e "$RUN_DIR/config.json" ]; then
|
|
cp "$RUN_DIR/config.example.json" "$RUN_DIR/config.json"
|
|
fi
|