diff --git a/install b/install
index 6d006de626142757dfdd1f403d16eedfdfb1151d..e33cfbc2ed82f8fb0df36b60a9bb07edc46069f1 100755
--- a/install
+++ b/install
@@ -174,6 +174,7 @@ EOFZF
 # ------------
 # CTRL-T - Paste the selected file path(s) into the command line
 __fsel() {
+  set -o nonomatch
   find * -path '*/\.*' -prune \
     -o -type f -print \
     -o -type d -print \
@@ -207,7 +208,7 @@ bindkey '^T' fzf-file-widget
 
 # ALT-C - cd into the selected directory
 fzf-cd-widget() {
-  cd "${$(find * -path '*/\.*' -prune \
+  cd "${$(set -o nonomatch; find * -path '*/\.*' -prune \
           -o -type d -print 2> /dev/null | fzf):-.}"
   zle reset-prompt
 }