GitHub package creation/upload

This commit is contained in:
Paulchen Panther
2019-06-19 19:04:54 +02:00
committed by Paulchen-Panther
parent c7922b2fd4
commit 93b9028b7d
8 changed files with 173 additions and 151 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python
import json, sys
retval = 0
with open(sys.argv[1]) as f:
data = json.load(f)
sys.stdout.write(data['versionnr'])
sys.exit(0)