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
Initial cost estimate: 2 days Initial contacts: @safern, @trylek
Running on ubuntu 19.10.
The 2nd of 3 invocation of the function setup_dirs from file eng/native/build-commons.sh is being called with $__IntermediatesDir either unset or set to the empty string. The result is a call
mkdir -p ""
which results in this error message:
mkdir: cannot create directory ‘’: No such file or directory
Please aggressively use the shell flags -u (fail on undefined variable) and -e (fail on subcommand fail) to find errors like this.
I invoke the build thusly:
bash ./build.sh -subsetCategory coreclr --configuration Debug --clang9
The text was updated successfully, but these errors were encountered:
Initial cost estimate: 2 days
Initial contacts: @safern, @trylek
Running on ubuntu 19.10.
The 2nd of 3 invocation of the function setup_dirs from file eng/native/build-commons.sh is being called with $__IntermediatesDir either unset or set to the empty string. The result is a call
mkdir -p ""
which results in this error message:
mkdir: cannot create directory ‘’: No such file or directory
Please aggressively use the shell flags -u (fail on undefined variable) and -e (fail on subcommand fail) to find errors like this.
I invoke the build thusly:
bash ./build.sh -subsetCategory coreclr --configuration Debug --clang9
The text was updated successfully, but these errors were encountered: