]> 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:

Check for existence of 'comm' command
authorMert Dirik <mertdirik@gmail.com>
Tue, 21 Oct 2014 00:09:14 +0000 (03:09 +0300)
committerMert Dirik <mertdirik@gmail.com>
Tue, 21 Oct 2014 00:09:14 +0000 (03:09 +0300)
vcsh

diff --git a/vcsh b/vcsh
index 8e765c41a6edda6a92be12d1b75d1327fe3f2a52..cebd7986b70413096fb9bc839996e0bcd902b3d0 100755 (executable)
--- a/vcsh
+++ b/vcsh
@@ -284,7 +284,13 @@ retire() {
        unset VCSH_DIRECTORY
 }
 
+command_exists() {
+       command -v "$1" >/dev/null 2>&1 || fatal "Could not find '$1' command"
+}
+
 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'