From 434456e7715084e7d22b7558b6bbc6738ad24948 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 2 May 2016 16:17:20 +0900 Subject: [PATCH] Do not check existence of paths --- brightray/script/bootstrap | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/brightray/script/bootstrap b/brightray/script/bootstrap index e0f373cecf3..e241606c2de 100755 --- a/brightray/script/bootstrap +++ b/brightray/script/bootstrap @@ -17,15 +17,7 @@ def main(): if (args.libcc_source_path != None and args.libcc_shared_library_path != None and args.libcc_static_library_path != None): - if (not os.path.isdir(args.libcc_source_path)): - 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) + pass elif (args.libcc_source_path != None or args.libcc_shared_library_path != None or args.libcc_static_library_path != None):