Browse Source

Update builds

pull/514/head
Andrew Belt 6 years ago
parent
commit
85441d61fe
3 changed files with 10 additions and 11 deletions
  1. +3
    -3
      manifests/ImpromptuModular.json
  2. +3
    -3
      manifests/SubmarineFree.json
  3. +4
    -5
      scripts/build_plugin.py

+ 3
- 3
manifests/ImpromptuModular.json View File

@@ -6,8 +6,8 @@
"manualUrl": "https://github.com/MarcBoule/ImpromptuModular/blob/master/README.md",
"sourceUrl": "https://github.com/MarcBoule/ImpromptuModular",
"donateUrl": "https://www.paypal.me/marcboule",
"latestVersion": "0.6.8",
"latestVersion": "0.6.9",
"repoVersion": "0.6.9",
"status": "available",
"buildTimestamp": 1531518706
}
"buildTimestamp": 1532235162
}

+ 3
- 3
manifests/SubmarineFree.json View File

@@ -5,7 +5,7 @@
"sourceUrl": "https://github.com/david-c14/SubmarineFree/",
"manualUrl": "https://github.com/david-c14/SubmarineFree/blob/master/manual/index.md",
"repoVersion": "0.6.5",
"buildTimestamp": 1529262254,
"latestVersion": "0.6.4",
"buildTimestamp": 1532139320,
"latestVersion": "0.6.5",
"status": "available"
}
}

+ 4
- 5
scripts/build_plugin.py View File

@@ -11,17 +11,16 @@ def system(cmd):


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():
system(f'rm -rf downloads_tmp')
system(f'rm -rf stage')


def commit_stage():
system('mkdir -p downloads')
system('mv downloads_tmp/* downloads/')
system('mv -vi stage/* ../../downloads/')
delete_stage()




Loading…
Cancel
Save