From 65c7cdcd62055286a254bb0d3ce6cc4459673dc0 Mon Sep 17 00:00:00 2001 From: Eli Young Date: Tue, 14 Apr 2015 16:46:43 -0700 Subject: [PATCH] vcsh: list_untracked(): remove --nocheck-order `--nocheck-order` is only supported by GNU `comm`, but it isn't necessary anyway because we sort the inputs first. --- vcsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcsh b/vcsh index 0f2c5af..51f2d21 100755 --- a/vcsh +++ b/vcsh @@ -312,7 +312,7 @@ list_untracked_helper() { cp $temp_file_others $temp_file_untracked || fatal 'Could not copy temp file' fi cp $temp_file_untracked $temp_file_untracked_copy || fatal 'Could not copy temp file' - comm -12 --nocheck-order $temp_file_others $temp_file_untracked_copy > $temp_file_untracked + comm -12 $temp_file_others $temp_file_untracked_copy > $temp_file_untracked } pull() { -- 2.39.2