summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2016-11-03 09:10:18 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2016-11-03 09:13:03 -0700
commitad085f1dec0131b430760b739b59d9a74579199a (patch)
tree3715c97e35fd0836dbee4ab83e49e79dc6f28c30 /Completion
parent060ff489155c1c35ffcabfcc0ee5647d8a606d75 (diff)
downloadzsh-ad085f1dec0131b430760b739b59d9a74579199a.tar.gz
zsh-ad085f1dec0131b430760b739b59d9a74579199a.tar.xz
zsh-ad085f1dec0131b430760b739b59d9a74579199a.zip
unposted: fix typo that was causing handling of "--" argument to fail
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Type/_remote_files2
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Type/_remote_files b/Completion/Unix/Type/_remote_files
index dbfb56134..1e9fed15e 100644
--- a/Completion/Unix/Type/_remote_files
+++ b/Completion/Unix/Type/_remote_files
@@ -40,7 +40,7 @@ if zstyle -T ":completion:${curcontext}:files" remote-access; then
 
   args=( ${argv[1,(i)--]} )
   shift ${#args}
-  [[ args[-1] = -- ]] && args[-1]=()
+  [[ $args[-1] = -- ]] && args[-1]=()
   # Command to run on the remote system.
   cmd="$1"
   shift