6 lines
120 B
Bash
Executable File
6 lines
120 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -d "/usr/src/app/node_modules" ]; then
|
|
echo "安装依赖文件..."
|
|
npm install
|
|
fi
|
|
npm run "$@" |