Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rwxr-xr-xcommands/check-system5
1 files changed, 1 insertions, 4 deletions
diff --git a/commands/check-system b/commands/check-system
index 1bfb3e6..6655775 100755
--- a/commands/check-system
+++ b/commands/check-system
@@ -16,8 +16,6 @@ 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")
-parser.add_argument("--skip-if-unchanged", action="store_true",
- help="skip if unchanged from the last check")
args = parser.parse_args()
interactive = "SUGAR_BUILDBOT" not in os.environ
@@ -25,5 +23,4 @@ interactive = "SUGAR_BUILDBOT" not in os.environ
system.check(update=args.update,
remove=args.remove,
test=args.test,
- interactive=interactive,
- skip_if_unchanged=args.skip_if_unchanged)
+ interactive=interactive)