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 | eb171a59b91a0730f095e951ebf783771ec50251 (patch) | |
tree | bfb11c7a118cec0ad83cca26dbeac8f4e12751e0 /home/.local/bin/def | |
parent | Shell script style pass (diff) | |
download | src-eb171a59b91a0730f095e951ebf783771ec50251.tar.gz src-eb171a59b91a0730f095e951ebf783771ec50251.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 |