summaryrefslogtreecommitdiff
path: root/sfeed_opml_export
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-08-05 12:49:51 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-08-05 13:03:15 +0200
commit394ffefd882b99bdbfead397ccab0b771ec4b0fe (patch)
tree9657ee0d607d55cf068230efd40439ae8558e7ae /sfeed_opml_export
parent44225e7fd3216f814b0c687a22dedffb375468fe (diff)
sfeed_update, opml_export: slightly safer comparison
Diffstat (limited to 'sfeed_opml_export')
-rwxr-xr-xsfeed_opml_export4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfeed_opml_export b/sfeed_opml_export
index 1f9c1cc..74e6de7 100755
--- a/sfeed_opml_export
+++ b/sfeed_opml_export
@@ -4,7 +4,7 @@
# loadconfig(configfile)
loadconfig() {
# allow to specify config via argv[1].
- if [ ! "$1" = "" ]; then
+ if [ ! x"$1" = x"" ]; then
# get absolute path of config file.
config=$(readlink -f "$1")
else
@@ -23,7 +23,7 @@ loadconfig() {
}
# override feeds function to ouput opml XML.
-# feed(name, feedurl, basesiteurl, [encoding])
+# feed(name, feedurl, [basesiteurl], [encoding])
feed() {
printf '\t\t<outline title="%s" text="%s" xmlUrl="%s" htmlUrl="%s"/>\n' "$1" "$1" "$2" "$3"
}