Do not check existence of paths
This commit is contained in:
parent
d5d16844b5
commit
434456e771
1 changed files with 1 additions and 9 deletions
|
@ -17,15 +17,7 @@ def main():
|
||||||
if (args.libcc_source_path != None and
|
if (args.libcc_source_path != None and
|
||||||
args.libcc_shared_library_path != None and
|
args.libcc_shared_library_path != None and
|
||||||
args.libcc_static_library_path != None):
|
args.libcc_static_library_path != None):
|
||||||
if (not os.path.isdir(args.libcc_source_path)):
|
pass
|
||||||
print "Error: Directory does not exist:", args.libcc_source_path
|
|
||||||
sys.exit(0)
|
|
||||||
elif (not os.path.isdir(args.libcc_shared_library_path)):
|
|
||||||
print "Error: Directory does not exist:", args.libcc_shared_library_path
|
|
||||||
sys.exit(0)
|
|
||||||
elif (not os.path.isdir(args.libcc_static_library_path)):
|
|
||||||
print "Error: Directory does not exist:", args.libcc_static_library_path
|
|
||||||
sys.exit(0)
|
|
||||||
elif (args.libcc_source_path != None or
|
elif (args.libcc_source_path != None or
|
||||||
args.libcc_shared_library_path != None or
|
args.libcc_shared_library_path != None or
|
||||||
args.libcc_static_library_path != None):
|
args.libcc_static_library_path != None):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue