We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b48f101 commit 0cf404cCopy full SHA for 0cf404c
1 file changed
jade/jade_packing.py
@@ -943,6 +943,14 @@ def packAPP(args):
943
if os.path.exists("file_verison_info.txt"):
944
os.remove("file_verison_info.txt")
945
946
+ save_path = CreateSavePath(os.path.join("releases", args.name + "V" + args.app_version))
947
+ if os.path.exists("{}/{}".format(getOperationSystem(), save_path)) is True:
948
+ shutil.rmtree("{}/{}".format(getOperationSystem(), save_path))
949
+ save_bin_path = CreateSavePath(os.path.join(save_path, getOperationSystem()))
950
+ # copy_dir("config", save_bin_path)
951
+ if args.lib_path:
952
+ copy_dir(args.lib_path, save_bin_path)
953
+
954
def get_app_version():
955
try:
956
with open("CONTRIBUTING.md","rb") as f:
0 commit comments