/proc/thread-self/root/var/lang/lib/node_modules/corepack/shims
This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.
#!/bin/shbasedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") case `uname` in *CYGWIN*) basedir=`cygpath -w "$basedir"`;;esac if [ -x "$basedir/node" ]; then exec "$basedir/node" "$basedir/../dist/npm.js" "$@"else exec node "$basedir/../dist/npm.js" "$@"fi