File Explorer

/proc/self/root/proc/self/root/proc/1/root/node24/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 /.

corepack284 B · 13 lines
#!/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/corepack.js" "$@"else  exec node  "$basedir/../dist/corepack.js" "$@"fi