From e3d2d5877cbb5a74ea95298b2ecc3da9829bac58 Mon Sep 17 00:00:00 2001 From: Christhoper Bernard Date: Wed, 20 Nov 2024 14:32:36 -0800 Subject: [PATCH] add ability to show root dir --- subcmds/root.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 subcmds/root.py diff --git a/subcmds/root.py b/subcmds/root.py new file mode 100644 index 000000000..4b1b6cc53 --- /dev/null +++ b/subcmds/root.py @@ -0,0 +1,6 @@ +from command import Command + + +class Root(Command): + def Execute(self, opt, args): + print(self.manifest.topdir)