diff options
Diffstat (limited to 'src/utils/legacy.py')
-rw-r--r-- | src/utils/legacy.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/utils/legacy.py b/src/utils/legacy.py index 76fc6c6..e740450 100644 --- a/src/utils/legacy.py +++ b/src/utils/legacy.py @@ -243,13 +243,3 @@ def configureOs(disk, partition): raise OSError(f'Error processing configureOsCustom: {e}') from e return out - - -def ogCopyEfiBootLoader(disk, partition): - cmd = f'ogCopyEfiBootLoader {disk} {partition}' - try: - proc = subprocess.run(cmd, - shell=True, - check=True) - except OSError as e: - raise OSError(f'Error processing ogCopyEfiBootLoader: {e}') from e |