]> git.madduck.net Git - etc/mutt.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Fix temporary file name for bgrun
authormartin f. krafft <madduck@madduck.net>
Tue, 19 Apr 2022 17:46:26 +0000 (19:46 +0200)
committermartin f. krafft <madduck@madduck.net>
Tue, 19 Apr 2022 17:46:26 +0000 (19:46 +0200)
.config/mutt/bgrun

index 100fe6c548603c194258ea86332a26fd846d60bb..37f40ad63f90f0060f4d740b4a76b6fb0dd74365 100755 (executable)
@@ -87,9 +87,9 @@ get_file() {
     cat > "$t"
     echo "$t"
   else
-    t="$(echo ${1##*/} | sed -re 's![^[:alnum:],.@%^+=_-]!_!gi')"
+    t="$(echo -n ${1##*/} | sed -re 's![^[:alnum:],.@%^+=_-]!_!gi')"
     ln "$1" "$t" 2>/dev/null || cp "$1" "$t"
-    echo "$t"
+    echo "$PWD/$t"
   fi
 }