From b9848538e37e8176af9029cfe225bddcf93a6c85 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Tue, 24 May 2016 13:50:04 +0200 Subject: Funced: Limit damage when removing tmpfile This will now only forcibly remove _files_, not directories. $tmpdir _should_ be something only we use in /tmp, but mktemp might screw up. --- share/functions/funced.fish | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/share/functions/funced.fish b/share/functions/funced.fish index 8f62e96b..14cb0d70 100644 --- a/share/functions/funced.fish +++ b/share/functions/funced.fish @@ -124,6 +124,8 @@ function funced --description 'Edit function definition' break end set -l stat $status - rm -rf $tmpdir >/dev/null + # Only forcibly delete files to limit possible damage is tmpdir is set to something weird + rm -f $tmpname >/dev/null + rm -r $tmpdir >/dev/null return $stat end -- cgit v1.2.3