aboutsummaryrefslogtreecommitdiff
path: root/bin/mked.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mked.sh')
-rw-r--r--bin/mked.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mked.sh b/bin/mked.sh
index 4e280205..93e21573 100644
--- a/bin/mked.sh
+++ b/bin/mked.sh
@@ -1,6 +1,6 @@
#!/bin/sh
# Create paths to all files before invoking editor
-for file ; do
+for file do
mkdir -p -- "${file%/*}" || exit
done
exec "$EDITOR" "$@"