Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands/check-system
diff options
context:
space:
mode:
Diffstat (limited to 'commands/check-system')
-rwxr-xr-xcommands/check-system4
1 files changed, 3 insertions, 1 deletions
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)