Skip to content

Commit

Permalink
Merge pull request #952 from JuliaLang/LilithHafner-patch-1
Browse files Browse the repository at this point in the history
Add workaround as error hint to tmp-not-executable branch
  • Loading branch information
davidanthoff authored Jun 8, 2024
2 parents aa0d4eb + 33551a6 commit a788a22
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deploy/shellscript/juliaup-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,10 @@ main() {
if [ ! -x "$_file" ]; then
printf '%s\n' "Cannot execute $_file." 1>&2

printf '%s\n' "Please install the files to a location where you can execute binaries." 1>&2
printf '%s\n' "Please use a tmp location where you can execute binaries." 1>&2
printf '%s\n' "Hint: you can change the tmp location with" 1>&2
printf '%s\n' " mkdir -p ~/tmp && curl -fsSL https://install.julialang.org | TMPDIR=~/tmp sh" 1>&2
# Workaround adapted from https://github.com/JuliaLang/juliaup/issues/450#issuecomment-1325439708
exit 1
fi

Expand Down

0 comments on commit a788a22

Please sign in to comment.