diff options
author | epoch <epoch@hacking.allowed.org> | 2019-02-05 21:56:57 -0600 |
---|---|---|
committer | epoch <epoch@hacking.allowed.org> | 2019-02-05 21:56:57 -0600 |
commit | 3691d2d55b83cda0f49ce96734a557522c5e424c (patch) | |
tree | 8a8c79c85565e56155abd40c3b51942548bfde9e | |
parent | 129b0a46c89321ee4922c8e712adc9f6ce15dd93 (diff) | |
download | hackvr-3691d2d55b83cda0f49ce96734a557522c5e424c.tar.gz hackvr-3691d2d55b83cda0f49ce96734a557522c5e424c.zip |
forgot a part of the path in part of that last commit. :/
-rwxr-xr-x | bin/makelabel.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/makelabel.sh b/bin/makelabel.sh index 7bb0d16..4d02b47 100755 --- a/bin/makelabel.sh +++ b/bin/makelabel.sh @@ -29,7 +29,7 @@ while read -rN 1 c;do yoffset="$(printf '%d - %d\n' $yoffset 10 | bc)" fi if grep "^$name " ${PREFIX}/share/hackvr/font/default.hackvr 2>&1 > /dev/null;then #don't do this shit unless we actually have something to draw. awk in offsetshape bitches when there's nothing. - grep "^$name " ${PREFIX}/share/hackvr/default.hackvr \ + grep "^$name " ${PREFIX}/share/hackvr/font/default.hackvr \ | sed 's/^'"$name"'/'"$target"'/' \ | offsetshape.sh "$xoffset" "$yoffset" "$zoffset" fi |