[DragonFlyBSD - Submit #2654] (Closed) [PATCH] fix operator

bugtracker-admin at leaf.dragonflybsd.org bugtracker-admin at leaf.dragonflybsd.org
Thu Mar 13 02:46:39 PDT 2014


Issue #2654 has been updated by tuxillo.

Category set to Other
Status changed from New to Closed
Assignee set to tuxillo
Target version set to 3.8.0

Pushed in ae04a094c3b8a863f1c726d39f39709be7f6f9b9
Thanks!

----------------------------------------
Submit #2654: [PATCH] fix operator
http://bugs.dragonflybsd.org/issues/2654#change-11894

* Author: bsdsx
* Status: Closed
* Priority: Normal
* Assignee: tuxillo
* Category: Other
* Target version: 3.8.0
----------------------------------------
---
 tools/tools/hammer-backup/hammer-backup.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/tools/hammer-backup/hammer-backup.sh b/tools/tools/hammer-backup/hammer-backup.sh
index cd56b2e..e1cc7d5 100755
--- a/tools/tools/hammer-backup/hammer-backup.sh
+++ b/tools/tools/hammer-backup/hammer-backup.sh
@@ -468,13 +468,13 @@ tmp=$(echo ${pfs_path} | tr '/' '_')
 output_file="${backup_dir}/${timestamp}${tmp}"
 
 # List backups if needed
-if [ ${list_opt} == 1 ]; then
+if [ ${list_opt} -eq 1 ]; then
     info "Listing backups."
     list_backups
 fi
 
 # Checksum test
-if [ ${checksum_opt} == 1 ]; then
+if [ ${checksum_opt} -eq 1 ]; then
     info "Checksum test for all backup files."
     checksum_backups
 fi
-- 
1.8.5.2



-- 
You have received this notification because you have either subscribed to it, or are involved in it.
To change your notification preferences, please click here: http://bugs.dragonflybsd.org/my/account



More information about the Submit mailing list