[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.216.150: ~ $
#!/bin/bash

# Change the cli shebang to point at the specified node
# Useful for when the program is moved around after install.
# Also used by the default 'make install' in node to point
# npm at the newly installed node, rather than the first one
# in the PATH, which would be the default otherwise.

# bash /path/to/npm/scripts/relocate.sh $nodepath
# If $nodepath is blank, then it'll use /usr/bin/env

dir="$(dirname "$(dirname "$0")")"
cli="$dir"/bin/npm-cli.js
tmp="$cli".tmp

node="$1"
if [ "x$node" = "x" ]; then
  node="/usr/bin/env node"
fi
node="#!$node"

sed -e 1d "$cli" > "$tmp"
echo "$node" > "$cli"
cat "$tmp" >> "$cli"
rm "$tmp"
chmod ogu+x $cli

Filemanager

Name Type Size Permission Actions
changelog.js File 2.89 KB 0644
clean-old.sh File 4.16 KB 0755
dep-update File 149 B 0755
dev-dep-update File 143 B 0755
doc-build.sh File 3.18 KB 0755
gen-changelog File 420 B 0755
index-build.js File 1.68 KB 0755
install.sh File 6.09 KB 0755
maketest File 2.02 KB 0755
publish-tag.js File 151 B 0644
release.sh File 657 B 0644
relocate.sh File 665 B 0755
update-authors.sh File 183 B 0755