From a5cdb9ffd437236e0aa86f1d31b5e7b5685a45b0 Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Thu, 25 Mar 2021 09:39:05 -0700 Subject: [PATCH] chore: make x.py take the target as its first positional argument --- x.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x.py b/x.py index 6e5ddee0..7c73338b 100755 --- a/x.py +++ b/x.py @@ -11,7 +11,7 @@ from subprocess import check_call, check_output, PIPE parser = argparse.ArgumentParser() parser.add_argument("-v", "--verbose", action="store_true") parser.add_argument("-q", "--quiet", action="store_true") -parser.add_argument("-t", "--target") +parser.add_argument("target") parser.add_argument("-l", "--list-targets", action="store_true") parser.add_argument("--coverage", action="store_true")