diff options
author | James McCoy <jamessan@jamessan.com> | 2017-06-09 16:42:43 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2017-06-09 16:42:43 -0400 |
commit | 90f20bd7b17a4c6889136008593312f8f8fe377b (patch) | |
tree | 128c09cbda256da5cb605d94b425913185f7625b | |
parent | 1a093c08d0474ee2f103f46c99da60fb0fd7f51d (diff) | |
download | rneovim-90f20bd7b17a4c6889136008593312f8f8fe377b.tar.gz rneovim-90f20bd7b17a4c6889136008593312f8f8fe377b.tar.bz2 rneovim-90f20bd7b17a4c6889136008593312f8f8fe377b.zip |
pvscheck: Fix argument handling in do_recheck
[ci skip]
-rwxr-xr-x | scripts/pvscheck.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pvscheck.sh b/scripts/pvscheck.sh index ca85b6be7f..d6d28e3c6c 100755 --- a/scripts/pvscheck.sh +++ b/scripts/pvscheck.sh @@ -369,7 +369,7 @@ do_check() { do_recheck() { local tgt="$1" ; shift - local deps="$2" ; shift + local deps="$1" ; shift create_compile_commands "$tgt" "$deps" |