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
We just had an isssue with autoproj_bootstrap hanging silently when started a fresh installation in line 86: env["PATH"] = self.class.sanitize_env(ENV["PATH"] || "")
The reason was that a "~" was used in the PATH:
echo $PATH
[...]:~/julia-1.8.5/bin
After replacing the ~ with the full path, everything works fine.
The text was updated successfully, but these errors were encountered:
We just had an isssue with autoproj_bootstrap hanging silently when started a fresh installation in line 86:
env["PATH"] = self.class.sanitize_env(ENV["PATH"] || "")
The reason was that a "~" was used in the PATH:
After replacing the ~ with the full path, everything works fine.
The text was updated successfully, but these errors were encountered: