mirror of
https://github.com/foxlet/macOS-Simple-KVM.git
synced 2024-11-23 03:29:41 +01:00
[TOOLS] Set default FMOS catalog to PublicRelease.
This commit is contained in:
parent
17ea14461a
commit
163ff33f7b
1 changed files with 2 additions and 2 deletions
|
@ -101,10 +101,10 @@ class MacOSProduct:
|
|||
|
||||
@click.command()
|
||||
@click.option('-o', '--output-dir', default="BaseSystem/", help="Target directory for package output.")
|
||||
@click.option('-c', '--catalog-id', default="DeveloperSeed", help="Name of catalog.")
|
||||
@click.option('-c', '--catalog-id', default="PublicRelease", help="Name of catalog.")
|
||||
@click.option('-p', '--product-id', default="", help="Product ID (as seen in SoftwareUpdate).")
|
||||
@click.option('-l', '--latest', is_flag=True, help="Get latest available macOS package.")
|
||||
def fetchmacos(output_dir="BaseSystem/", catalog_id="DeveloperSeed", product_id="", latest=False):
|
||||
def fetchmacos(output_dir="BaseSystem/", catalog_id="PublicRelease", product_id="", latest=False):
|
||||
# Get the remote catalog data
|
||||
remote = SoftwareService(catalog_id)
|
||||
catalog = remote.getcatalog()
|
||||
|
|
Loading…
Reference in a new issue