12 lines
336 B
Python
12 lines
336 B
Python
from commands.util import pacman
|
|
from commands.util.input_mgr import confirm_overwrite, password
|
|
|
|
|
|
def commit(dry_run: bool = False, force: bool = False, no_render: bool = False):
|
|
if dry_run:
|
|
pass
|
|
print("Commit, force:", force)
|
|
password()
|
|
print(pacman.list_explicitly_installed())
|
|
print(confirm_overwrite())
|