diff options
author | V.Krishn <vkrishn4@gmail.com> | 2021-11-29 03:26:28 +0530 |
---|---|---|
committer | V.Krishn <vkrishn4@gmail.com> | 2021-11-29 03:26:28 +0530 |
commit | e86687d21b64a45354b956ead9b70b905b311ded (patch) | |
tree | 76e2bb3f3ef13cbf17908098d4d090631ef26024 | |
parent | 2a6ce6fdbc2a5a9688bde9c4f0d2c458fa1fe246 (diff) | |
download | nbreader-e86687d21b64a45354b956ead9b70b905b311ded.tar.bz2 |
fix minor bug - variable quotes
-rw-r--r-- | scripts/feedicon.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feedicon.sh b/scripts/feedicon.sh index 5d2e537..062166d 100644 --- a/scripts/feedicon.sh +++ b/scripts/feedicon.sh @@ -208,7 +208,7 @@ get_feedicon() { _make_datauri_file() { local _i="${localIco%%.ico}.ico.txt" - if [ $DATAURI != "" ]; then + if [ "$DATAURI" != "" ]; then echo $DATAURI > "$_i" else if [ ! -s "$localIco" ]; then return; fi |