summaryrefslogtreecommitdiffstats
path: root/gamechestcli
diff options
context:
space:
mode:
Diffstat (limited to 'gamechestcli')
-rwxr-xr-xgamechestcli/src/gamechest/__main__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gamechestcli/src/gamechest/__main__.py b/gamechestcli/src/gamechest/__main__.py
index 10364c6..ddb5247 100755
--- a/gamechestcli/src/gamechest/__main__.py
+++ b/gamechestcli/src/gamechest/__main__.py
@@ -31,9 +31,11 @@ def main():
if args['install']:
for gameid in args['GAME_ID']:
+ print(f'Installing {gameid}')
install.install(gameid)
elif args['remove']:
for gameid in args['GAME_ID']:
+ print(f'Removing {gameid}')
remove.remove(gameid)
elif args['update']:
game_db = GameDB()