Skip to content

Commit 388d15a

Browse files
committed
[system] Install all packages by default
1 parent c0f299b commit 388d15a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
parser.add_argument('--venv', metavar='DIR', type=str, default="python-venv", help='destination of local Python virtual environment')
99
parser.add_argument('--python-path', metavar='DIR', type=str, default="python3", help='Path to local Python installation.')
1010
for deployment in ["aws", "azure", "gcp", "openwhisk"]:
11-
parser.add_argument(f"--{deployment}", action="store_const", const=True, dest=deployment)
11+
parser.add_argument(f"--{deployment}", action="store_const", const=True, default=True, dest=deployment)
1212
parser.add_argument(f"--no-{deployment}", action="store_const", const=False, default=True, dest=deployment)
1313
for deployment in ["local"]:
1414
parser.add_argument(f"--{deployment}", action="store_const", default=True, const=True, dest=deployment)

0 commit comments

Comments
 (0)