diff options
author | June McEnroe <june@causal.agency> | 2019-07-27 17:08:17 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-07-27 17:08:17 -0400 |
commit | b13cb22c88592ace7674be9c095769fc080c41e4 (patch) | |
tree | 1c80e184e99647194e50431e0a386a8feccfbb0b /home/.local/bin/def | |
parent | Shell script style pass (diff) | |
download | src-b13cb22c88592ace7674be9c095769fc080c41e4.tar.gz src-b13cb22c88592ace7674be9c095769fc080c41e4.zip |
Fix shell script style in ~/.local/bin
Diffstat (limited to '')
-rwxr-xr-x | home/.local/bin/def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/.local/bin/def b/home/.local/bin/def index ea8b9536..6a1681d3 100755 --- a/home/.local/bin/def +++ b/home/.local/bin/def @@ -42,6 +42,6 @@ for header in $headers; do | tail -n 1 ) [ $? -ne 0 -o "$defined" = "$macro" ] && continue - echo "#include <$header>" + echo "#include <${header}>" echo "$defined" done |