Skip to content

Commit e9e9e34

Browse files
feat: speedup KSP extraction on Windows (#112)
Signed-off-by: wonjoel <[email protected]>
1 parent d3f3adb commit e9e9e34

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ AWS Deadline Cloud for KeyShot is a python package that allows users to create [
1717
This library requires:
1818
1. KeyShot 2023 or 2024
1919
1. Python 3.9 or higher; and
20-
1. Windows, or a macOS operating system.
20+
1. Windows or macOS operating system.
2121

2222
## Submitter
2323

Diff for: src/deadline/keyshot_submitter/Submit to AWS Deadline Cloud.py

+2
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,8 @@ def get_ksp_bundle_files(directory: str) -> Tuple[str, list[str]]:
418418
[
419419
"PowerShell",
420420
"-Command",
421+
'$ProgressPreference = "SilentlyContinue"', # don't display progress bar, up to 4x speedup
422+
";",
421423
"Expand-Archive",
422424
"-Path",
423425
ksp_archive,

0 commit comments

Comments
 (0)