diff --git a/Makefile b/Makefile index e56b183..9d7877f 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,12 @@ run: #make cert && python server.py - testToken: +testToken: python core/jwt.py cert: openssl req -new -x509 -keyout localhost.pem -out localhost.pem -nodes -days 365 + +testEnv: + python utils/parsePortage.py + diff --git a/utils/parsePortage.py b/utils/parsePortage.py index 5ead1ed..f77a423 100644 --- a/utils/parsePortage.py +++ b/utils/parsePortage.py @@ -49,5 +49,5 @@ class PortageConfig(): Lines = self.getlines(self.Config.Portage['package.keywords']) if __name__ == '__main__': - test = PortageConfig() - test.parseMakeConf() + Test = PortageConfig() + Test.parseMakeConf()