@@ -6,8 +6,8 @@ | |||||
"manualUrl": "https://github.com/MarcBoule/ImpromptuModular/blob/master/README.md", | "manualUrl": "https://github.com/MarcBoule/ImpromptuModular/blob/master/README.md", | ||||
"sourceUrl": "https://github.com/MarcBoule/ImpromptuModular", | "sourceUrl": "https://github.com/MarcBoule/ImpromptuModular", | ||||
"donateUrl": "https://www.paypal.me/marcboule", | "donateUrl": "https://www.paypal.me/marcboule", | ||||
"latestVersion": "0.6.8", | |||||
"latestVersion": "0.6.9", | |||||
"repoVersion": "0.6.9", | "repoVersion": "0.6.9", | ||||
"status": "available", | "status": "available", | ||||
"buildTimestamp": 1531518706 | |||||
} | |||||
"buildTimestamp": 1532235162 | |||||
} |
@@ -5,7 +5,7 @@ | |||||
"sourceUrl": "https://github.com/david-c14/SubmarineFree/", | "sourceUrl": "https://github.com/david-c14/SubmarineFree/", | ||||
"manualUrl": "https://github.com/david-c14/SubmarineFree/blob/master/manual/index.md", | "manualUrl": "https://github.com/david-c14/SubmarineFree/blob/master/manual/index.md", | ||||
"repoVersion": "0.6.5", | "repoVersion": "0.6.5", | ||||
"buildTimestamp": 1529262254, | |||||
"latestVersion": "0.6.4", | |||||
"buildTimestamp": 1532139320, | |||||
"latestVersion": "0.6.5", | |||||
"status": "available" | "status": "available" | ||||
} | |||||
} |
@@ -11,17 +11,16 @@ def system(cmd): | |||||
def stage_package(plugin_dir): | def stage_package(plugin_dir): | ||||
system('mkdir -p downloads_tmp') | |||||
system(f'mv {plugin_dir}/dist/*.zip downloads_tmp/') | |||||
system('mkdir -p stage') | |||||
system(f'mv {plugin_dir}/dist/*.zip stage/') | |||||
def delete_stage(): | def delete_stage(): | ||||
system(f'rm -rf downloads_tmp') | |||||
system(f'rm -rf stage') | |||||
def commit_stage(): | def commit_stage(): | ||||
system('mkdir -p downloads') | |||||
system('mv downloads_tmp/* downloads/') | |||||
system('mv -vi stage/* ../../downloads/') | |||||
delete_stage() | delete_stage() | ||||