From: Eli Young Date: Tue, 14 Apr 2015 23:46:43 +0000 (-0700) Subject: vcsh: list_untracked(): remove --nocheck-order X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/65c7cdcd62055286a254bb0d3ce6cc4459673dc0?ds=sidebyside 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. --- 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() {