aboutsummaryrefslogtreecommitdiff
path: root/bindings.bb
diff options
context:
space:
mode:
Diffstat (limited to 'bindings.bb')
-rw-r--r--bindings.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings.bb b/bindings.bb
index 42b8e25..7cc60a5 100644
--- a/bindings.bb
+++ b/bindings.bb
@@ -137,11 +137,11 @@ Ctrl-n: # New file/directory
case "$(printf '%s\0' File Directory | pick "Create new: ")" in
File)
ask name "New File: " || exit
- touch "$name"
+ touch -- "$name"
;;
Directory)
ask name "New Directory: " || exit
- mkdir "$name"
+ mkdir -- "$name"
;;
*) exit
;;