mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-07-18 08:48:27 -04:00
10 lines
230 B
Plaintext
10 lines
230 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
# check npm exists
|
|
if [ -f /usr/bin/npm ]; then
|
|
## Ubuntu
|
|
mkdir /config/.npm-global
|
|
npm config set prefix '/config/.npm-global'
|
|
export PATH=/config/.npm-global/bin:$PATH
|
|
source ~/.profile
|
|
fi |