From 934ec1619f77e73662e7ff0b0d7d2c35225c0c59 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Thu, 15 Nov 2012 09:54:03 +0000 Subject: Add a --test option --- (limited to 'commands') diff --git a/commands/check-system b/commands/check-system index d605434..ac0b9d3 100755 --- a/commands/check-system +++ b/commands/check-system @@ -13,6 +13,8 @@ parser.add_argument("--update", action="store_true", help="first of all update the system") parser.add_argument("--remove", action="store_true", help="remove all the unnecessary packages") +parser.add_argument("--test", action="store_true", + help="don't add or remove packages, test only") args = parser.parse_args() -system.check(update=args.update, remove=args.remove) +system.check(update=args.update, remove=args.remove, test=args.test) -- cgit v0.9.1