mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
11 lines
282 B
Bash
11 lines
282 B
Bash
#!/bin/bash
|
|
|
|
NPM_REGISTRY=${NPM_REGISTRY:-https://registry.npmjs.org/}
|
|
echo "Setting npm registry to ${NPM_REGISTRY}"
|
|
npm config set registry "$NPM_REGISTRY"
|
|
|
|
echo "Using REQUEST_TIMEOUT: $REQUEST_TIMEOUT"
|
|
echo "Using UV_PYTHON_INSTALL_MIRROR: $UV_PYTHON_INSTALL_MIRROR"
|
|
|
|
exec "$@"
|