diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-07-05 02:36:52 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-07-05 18:08:47 -0400 |
commit | 626705238075a1aceca518e4d464b5df6458750f (patch) | |
tree | 74d8d67eea8d4311de5f45f29ff2a26acb6bb3a2 /src/lib/libreblacklist | |
parent | 739f574f08814694c1b85d72ae8964bc0f0bdf97 (diff) |
quote calls to librelib
Diffstat (limited to 'src/lib/libreblacklist')
-rwxr-xr-x | src/lib/libreblacklist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libreblacklist b/src/lib/libreblacklist index eeb6b7f..484c536 100755 --- a/src/lib/libreblacklist +++ b/src/lib/libreblacklist @@ -20,7 +20,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # make sure XDG_CACHE_HOME is set -. $(librelib conf) +. "$(librelib conf)" # Usage: blacklist-normalize <$file # Normalizes the syntax of the blacklist on stdin. @@ -113,7 +113,7 @@ if [[ "${0##*/}" == libreblacklist ]]; then usage() { export TEXTDOMAIN='librelib' export TEXTDOMAINDIR='/usr/share/locale' - . $(librelib messages) + . "$(librelib messages)" if [[ $# -eq 0 ]]; then print "Usage: %s [-h] COMMAND [ARGUMENTS]" "${0##*/}" print "Tool for working with the nonfree software blacklist" |