]> git.madduck.net Git - code/vcsh.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:

vcsh: Use BSD/OS X compatible `mktemp`
authorRichard Hartmann <richih@debian.org>
Wed, 22 Oct 2014 22:26:30 +0000 (00:26 +0200)
committerRichard Hartmann <richih@debian.org>
Wed, 22 Oct 2014 22:26:30 +0000 (00:26 +0200)
vcsh

diff --git a/vcsh b/vcsh
index e4143de156316be008b9361d56219ed9d19315bc..965f83dd00b7fe0bde3c8a77b1876fba06d9a4d7 100755 (executable)
--- a/vcsh
+++ b/vcsh
@@ -293,9 +293,9 @@ command_exists() {
 list_untracked() {
        command_exists comm
 
-       temp_file_others=$(mktemp) || fatal 'Could not create temp file'
-       temp_file_untracked=$(mktemp) || fatal 'Could not create temp file'
-       temp_file_untracked_copy=$(mktemp) || fatal 'Could not create temp file'
+       temp_file_others=$(mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX") || fatal 'Could not create temp file'
+       temp_file_untracked=$(mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX") || fatal 'Could not create temp file'
+       temp_file_untracked_copy=$(mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX") || fatal 'Could not create temp file'
 
        [ -z "$VCSH_OPTION_RECURSIVE" ] && directory_opt="--directory"