Compare commits

...

3 Commits

Author SHA1 Message Date
Lily 269e0b282b
Merge 56b3f1aca2 into adde00327a 2024-10-11 18:35:43 +11:00
tskawada adde00327a
Ensure fetch-macOS-v2 supports the latest OS versions 2024-10-10 11:43:13 +05:30
Lily 56b3f1aca2
Use `--shallow-submodules` for `--depth=1` on submodules 2024-08-07 14:13:52 +03:00
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ processors work just fine (even for macOS Sonoma).
``` ```
cd ~ cd ~
git clone --depth 1 --recursive https://github.com/kholia/OSX-KVM.git git clone --depth 1 --recursive --shallow-submodules https://github.com/kholia/OSX-KVM.git
cd OSX-KVM cd OSX-KVM
``` ```

View File

@ -508,7 +508,7 @@ def main():
help=f'use specified os type, defaults to default {MLB_ZERO}') help=f'use specified os type, defaults to default {MLB_ZERO}')
parser.add_argument('-diag', '--diagnostics', action='store_true', help='download diagnostics image') parser.add_argument('-diag', '--diagnostics', action='store_true', help='download diagnostics image')
parser.add_argument('-s', '--shortname', type=str, default='', parser.add_argument('-s', '--shortname', type=str, default='',
help='available options: high-sierra, mojave, catalina, big-sur, monterey, ventura') help='available options: high-sierra, mojave, catalina, big-sur, monterey, ventura, sonoma, sequoia')
parser.add_argument('-v', '--verbose', action='store_true', help='print debug information') parser.add_argument('-v', '--verbose', action='store_true', help='print debug information')
parser.add_argument('-db', '--board-db', type=str, default=os.path.join(SELF_DIR, 'boards.json'), parser.add_argument('-db', '--board-db', type=str, default=os.path.join(SELF_DIR, 'boards.json'),
help='use custom board list for checking, defaults to boards.json') help='use custom board list for checking, defaults to boards.json')
@ -542,7 +542,7 @@ def main():
{"name": "Monterey (12.6)", "b": "Mac-B809C3757DA9BB8D", "m": "00000000000000000", "os_type": "latest", "short": "monterey"}, {"name": "Monterey (12.6)", "b": "Mac-B809C3757DA9BB8D", "m": "00000000000000000", "os_type": "latest", "short": "monterey"},
{"name": "Ventura (13) - RECOMMENDED", "b": "Mac-4B682C642B45593E", "m": "00000000000000000", "os_type": "latest", "short": "ventura"}, {"name": "Ventura (13) - RECOMMENDED", "b": "Mac-4B682C642B45593E", "m": "00000000000000000", "os_type": "latest", "short": "ventura"},
{"name": "Sonoma (14) ", "b": "Mac-827FAC58A8FDFA22", "m": "00000000000000000", "short": "sonoma"}, {"name": "Sonoma (14) ", "b": "Mac-827FAC58A8FDFA22", "m": "00000000000000000", "short": "sonoma"},
{"name": "Sequoia (15) ", "b": "Mac-7BA5B2D9E42DDD94", "m": "00000000000000000", "short": "Sequoia", "os_type": "latest"}, {"name": "Sequoia (15) ", "b": "Mac-7BA5B2D9E42DDD94", "m": "00000000000000000", "short": "sequoia", "os_type": "latest"},
] ]
for index, product in enumerate(products): for index, product in enumerate(products):
name = product["name"] name = product["name"]