We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9e1bf81 + 38a010f commit 49b8483Copy full SHA for 49b8483
tool/include-list-gen.sh
@@ -1,9 +1,9 @@
1
#!/bin/sh -e
2
# Generate the content of nanorc
3
4
-base="$(dirname $0)/../"
+base="$(dirname "$0")/../"
5
6
rm "$base/nanorc"
7
-for n in $base/*.nanorc; do
+for n in "$base"/*.nanorc; do
8
printf 'include "~/.nano/%s"\n' "$(basename "$n")" >> "$base/nanorc"
9
done
tool/shellcheck.sh
@@ -1,5 +1,5 @@
#!/bin/sh -ev
# Shellcheck the script
shellcheck "$base/install.sh"
0 commit comments