vitepress-blog/entrypoint.sh
想打瞌睡 43b9a48461 init
2024-07-08 12:07:27 +09:00

6 lines
120 B
Bash
Executable File

#!/bin/sh
if [ ! -d "/usr/src/app/node_modules" ]; then
echo "安装依赖文件..."
npm install
fi
npm run "$@"