diff options
author | Jonathan Bennett <jbennett@incomsystems.biz> | 2017-10-15 22:12:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-15 22:12:18 -0500 |
commit | e52a4b5ceab621fb35d1ebd7f838eb6c4c7c06d2 (patch) | |
tree | 6d1dd7977aa95ca0cdcf669a3051a725f150c027 | |
parent | 085fb17a11c3f955962c143ba4e501c825305b04 (diff) |
luci-app-fwknopd: Prep for libqrencode update
An update for libqrencode requires that we explicitly ask for an SVG output. This continues to work properly with the old version. Making the change here before updating the libqrencode package.
Signed-off-by: Jonathan Bennett <JBennett@Incomsystems.biz>
-rw-r--r-- | applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh index 7825f05d2..f525c2abd 100644 --- a/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh +++ b/applications/luci-app-fwknopd/root/usr/sbin/gen-qr.sh @@ -23,4 +23,4 @@ if [ "$hmac_key" != "" ]; then qr="$qr HMAC_KEY:$hmac_key" fi -qrencode -o - "$qr" +qrencode -t svg -o - "$qr" |