Files
2026-06-10 18:08:57 +07:00

11 lines
149 B
Bash

#!/usr/bin/env sh
set -e
cd /var/www/html
if [ ! -d node_modules ] || [ ! -f node_modules/.package-lock.json ]; then
npm install
fi
exec "$@"