mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-23 18:29:21 -05:00
7 lines
166 B
Bash
7 lines
166 B
Bash
#!/bin/sh
|
|
NPM_REGISTRY=${NPM_REGISTRY:-https://registry.npmjs.org/}
|
|
echo "Setting npm registry to ${NPM_REGISTRY}"
|
|
npm config set registry "$NPM_REGISTRY"
|
|
|
|
exec "$@"
|