Skip to content

Commit

Permalink
Superstitiously make sure to delete download files in install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
maouw committed Oct 18, 2023
1 parent 200a75f commit 2371065
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/install-freesurfer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,7 @@ if [ -r "${dlpath}" ]; then
fi
fi

# Making extra sure we remove the download file (huge):
rm -rf "${dlpath:-}"

[ -n "${success:-}" ] && exit 0 || exit 1
3 changes: 3 additions & 0 deletions scripts/install-turbovnc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,7 @@ if [ -r "${dlpath}" ]; then
fi
fi

# Making extra sure we remove the download file:
rm -rf "${dlpath:-}"

[ -n "${success:-}" ] && exit 0 || exit 1

0 comments on commit 2371065

Please sign in to comment.