Skip to content

Commit

Permalink
[system] Install all packages by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mcopik committed Jun 3, 2024
1 parent c0f299b commit 388d15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
parser.add_argument('--venv', metavar='DIR', type=str, default="python-venv", help='destination of local Python virtual environment')
parser.add_argument('--python-path', metavar='DIR', type=str, default="python3", help='Path to local Python installation.')
for deployment in ["aws", "azure", "gcp", "openwhisk"]:
parser.add_argument(f"--{deployment}", action="store_const", const=True, dest=deployment)
parser.add_argument(f"--{deployment}", action="store_const", const=True, default=True, dest=deployment)
parser.add_argument(f"--no-{deployment}", action="store_const", const=False, default=True, dest=deployment)
for deployment in ["local"]:
parser.add_argument(f"--{deployment}", action="store_const", default=True, const=True, dest=deployment)
Expand Down

0 comments on commit 388d15a

Please sign in to comment.