summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Parrish2015-06-25 00:28:42 -0400
committerDavid Parrish2015-06-25 00:28:42 -0400
commitcc8ab2b1bbd9f46c057f90b5198fe22ce6be4f4e (patch)
treebb7e48ce8daeec8cf02f835e355f5cb9ba76c230
parent0671e770511c6a4b87a5e1af6f9da894fe51b2f3 (diff)
downloadaur-cc8ab2b1bbd9f46c057f90b5198fe22ce6be4f4e.tar.gz
Fix error in nrs.sh script
-rwxr-xr-xnrs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/nrs.sh b/nrs.sh
index bf104b742c9b..236fee4a03d8 100755
--- a/nrs.sh
+++ b/nrs.sh
@@ -10,7 +10,7 @@ if [ $libnotify_installed ]; then
echo "libnotify_installed"
fi
-if [ $nxt_status != "active" && $nxt_tor_status != "active" ]; then
+if [[ $nxt_status != "active" && $nxt_tor_status != "active" ]]; then
start_nxt_message="NXT service isn't active. Try starting NXT with 'systemctl start nxt' if NRS doesn't load."
if [ $is_libnotify_installed ]; then
notify-send "NRS" "$start_nxt_message"