aboutsummaryrefslogtreecommitdiffstats
path: root/commands/caps
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-08-28 23:39:37 +0200
committermakefu <github@syntax-fehler.de>2015-08-28 23:39:37 +0200
commit7eba4293714b9dce86c07ccf2fdaddaa11a4c3c7 (patch)
tree28fdc7158cd28e4b25cf5674ab54da8da8b69c1e /commands/caps
parent15026716ab3057998cf2f487742c2dd8e185335c (diff)
Reaktor: add nix support, packaging
Diffstat (limited to 'commands/caps')
-rwxr-xr-xcommands/caps13
1 files changed, 0 insertions, 13 deletions
diff --git a/commands/caps b/commands/caps
deleted file mode 100755
index ac8cc66..0000000
--- a/commands/caps
+++ /dev/null
@@ -1,13 +0,0 @@
-#! /usr/bin/env python3
-import imp
-import os
-
-def load_config(filename):
- dirname = os.path.dirname(filename)
- modname, ext = os.path.splitext(os.path.basename(filename))
- file, pathname, description = imp.find_module(modname, [ dirname ])
- return imp.load_module(modname, file, pathname, description)
-
-config = load_config(os.environ['config_filename'])
-print('Private: '+' '.join(filter(None,[ x.get('capname',None) for x in config.commands])))
-print('Public: '+' '.join(filter(None,[ x.get('capname',None) for x in config.public_commands])))