diff --git a/README.md b/README.md index 267be17..a3a3d3a 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,10 @@ Automated node.js installers for OS X and Ubuntu ```bash # install node.js without development dependencies -curl -fsSL bit.ly/nodejs-min | bash +curl -fsSL bit.ly/install-min-node | bash # using wget instead of curl (Ubuntu) -wget -nv bit.ly/nodejs-min -O - | bash +wget -nv bit.ly/install-min-node -O - | bash ``` **node.js + dev tools** @@ -27,7 +27,7 @@ wget -nv bit.ly/nodejs-min -O - | bash Install node.js and basic development tools - git, node, gcc, pkg-config, etc ```bash -curl -L bit.ly/nodejs-dev-install -o ./node-dev; bash ./node-dev +curl -L bit.ly/install-dev-node -o ./node-dev; bash ./node-dev ``` @@ -75,7 +75,7 @@ Type `agree` and hit enter to accept the license. Now you can install node.js ```bash -curl -fsSL bit.ly/nodejs-dev-install -o /tmp/node-dev.sh; bash /tmp/node-dev.sh +curl -fsSL bit.ly/install-dev-node -o /tmp/node-dev.sh; bash /tmp/node-dev.sh ``` *TODO*: Make it easier to accepting the license (automatic?) @@ -83,7 +83,7 @@ curl -fsSL bit.ly/nodejs-dev-install -o /tmp/node-dev.sh; bash /tmp/node-dev.sh ### Ubuntu Linux ```bash -wget -nv bit.ly/nodejs-dev-install -O /tmp/node-dev.sh; bash /tmp/node-dev.sh +wget -nv bit.ly/install-dev-node -O /tmp/node-dev.sh; bash /tmp/node-dev.sh ``` ### Other things you should know diff --git a/setup-min.sh b/setup-min.sh index d6e52d5..08723f2 100644 --- a/setup-min.sh +++ b/setup-min.sh @@ -3,7 +3,7 @@ # Installs node.js only (no development dependencies) for both Ubuntu and OS X # -# See https://github.com/coolaj86/node-install-script +# See https://git.daplie.com/coolaj86/node-install-script # # curl -fsSL bit.ly/nodejs-min | bash @@ -14,7 +14,7 @@ NODEJS_NAME="node" NODEJS_BASE_URL="https://nodejs.org" -BASE_URL="https://raw.githubusercontent.com/coolaj86/node-install-script/master" +BASE_URL="https://git.daplie.com/coolaj86/node-install-script/raw/master" OS="unsupported" ARCH="" NODEJS_VER=""