1 files changed, 2 insertions(+), 2 deletions(-)
M lobsters
M lobsters => lobsters +2 -2
@@ 31,9 31,9 @@ if [ "$action" = "view" ]; then
echo "${url_array[$article]}"
elif [ "$action" = "read" ]; then
if [ -n "$BROWSER" ]; then
- $BROWSER "${url_array[$article]}"
+ "$BROWSER" "${url_array[$article]}"
elif type -P 'xdg-open'; then
- xdg-open "${url_array[$article]}"
+ xdg-open "${url_array[$article]}"
else
read -p "Please enter your browser's binary (e.g. firefox -- if it's in your \$PATH), or the full location of the binary (e.g. /opt/firefox/firefox): " browser
if [[ "$browser" == *"firefox"* ]] || [[ "$browser" == *"palemoon"* ]]; then