diff options
author | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
---|---|---|
committer | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
commit | fca74d4bc3569506a6659880a89aa009dc11f552 (patch) | |
tree | 4cefd06af989608ea8ebd3bc6306889e2a1ad175 /moon-abe/python/cpabe-dec.py | |
parent | 840ac3ebca7af381132bf7e93c1e4c0430d6b16a (diff) |
moon-abe cleanup
Change-Id: Ie1259856db03f0b9e80de3e967ec6bd1f03191b3
Diffstat (limited to 'moon-abe/python/cpabe-dec.py')
-rw-r--r-- | moon-abe/python/cpabe-dec.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/moon-abe/python/cpabe-dec.py b/moon-abe/python/cpabe-dec.py deleted file mode 100644 index 3e120578..00000000 --- a/moon-abe/python/cpabe-dec.py +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/python -import os, sys -from subprocess import call - -c_prog = "cpabe-dec" -c_file = "/usr/local/bin/" + c_prog - -if(os.path.isfile(c_file)): - args = [c_prog] + sys.argv[1::] - call(args) - -elif(os.path.isfile("./" + c_prog)): - print "Warning: missing file %s using binary in local repository" % c_file - args = ["./" + c_prog] + sys.argv[1::] - call(args) - -else: - sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program") |