Do not hardcode owner of the image (#1769)

* Do not hardcode owner of the image

* Fix
This commit is contained in:
Ayaz Salikhov
2022-08-11 11:51:10 +04:00
committed by GitHub
parent b159a79118
commit 64c4cd717a
6 changed files with 32 additions and 11 deletions

View File

@@ -120,7 +120,11 @@ if __name__ == "__main__":
type=Path,
help="Directory to save manifest file",
)
arg_parser.add_argument("--owner", default="jupyter", help="Owner of the image")
arg_parser.add_argument(
"--owner",
required=True,
help="Owner of the image",
)
args = arg_parser.parse_args()
LOGGER.info(f"Current build timestamp: {BUILD_TIMESTAMP}")