File Explorer

/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 /.

1 dir
21 files
yarnpkg282 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/yarnpkg.js" "$@"else  exec node  "$basedir/../dist/yarnpkg.js" "$@"fi