summaryrefslogtreecommitdiff
path: root/src/frontend/cli/sisyphus-cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/cli/sisyphus-cli.py')
-rwxr-xr-xsrc/frontend/cli/sisyphus-cli.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/frontend/cli/sisyphus-cli.py b/src/frontend/cli/sisyphus-cli.py
index 3d4fb3a..c99f86a 100755
--- a/src/frontend/cli/sisyphus-cli.py
+++ b/src/frontend/cli/sisyphus-cli.py
@@ -31,3 +31,15 @@ if "__main__" == __name__:
sisyphus_pkg_search()
elif "update" in sys.argv[1:]:
sisyphus_pkg_system_update()
+ elif "belongs" in sys.argv[1:]:
+ sisyphus_pkg_belongs()
+ elif "depends" in sys.argv[1:]:
+ sisyphus_pkg_depends()
+ elif "files" in sys.argv[1:]:
+ sisyphus_pkg_files()
+ elif "sysinfo" in sys.argv[1:]:
+ sisyphus_pkg_sysinfo()
+ elif "help" in sys.argv[1:]:
+ sisyphus_pkg_help()
+ elif not sys.argv[1:]:
+ sisyphus_pkg_help()