You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "globexists" function should be defined in the file. I am guessing the authors read this stack overflow page, and forgot to include this in their bash script.
If you want to fix this, you can add to the top of ./script/rundissect_pytorch_external.sh:
# For expanding globs http://stackoverflow.com/questions/2937407
function globexists {
set +f
test -e "$1" -o -L "$1";set -f
}
the function globexists is missing from rundissect_pytorch_external.sh:
it does exist, however, in rundissect.sh
The text was updated successfully, but these errors were encountered: