forked from expo/troggle
better commit msg
This commit is contained in:
parent
03cda8a897
commit
e195497829
@ -261,7 +261,7 @@ def scanupload(request, path=None):
|
|||||||
print(f'wallet string {walletname}, FAIL TO GET or create WALLET OBJECT')
|
print(f'wallet string {walletname}, FAIL TO GET or create WALLET OBJECT')
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def commit_json():
|
def commit_json(waldata):
|
||||||
destfolder = contents_path.parent
|
destfolder = contents_path.parent
|
||||||
dr_add = subprocess.run([git, "add", contentsjson], cwd=destfolder, capture_output=True, text=True)
|
dr_add = subprocess.run([git, "add", contentsjson], cwd=destfolder, capture_output=True, text=True)
|
||||||
if dr_add.returncode != 0:
|
if dr_add.returncode != 0:
|
||||||
@ -274,8 +274,15 @@ def scanupload(request, path=None):
|
|||||||
comment = f"on dev machine '{socket.gethostname()}' "
|
comment = f"on dev machine '{socket.gethostname()}' "
|
||||||
else:
|
else:
|
||||||
comment = ""
|
comment = ""
|
||||||
|
if waldata["cave"]:
|
||||||
|
label = waldata["cave"]
|
||||||
|
else:
|
||||||
|
if waldata["name"]:
|
||||||
|
label = waldata["name"]
|
||||||
|
else:
|
||||||
|
label = ""
|
||||||
|
|
||||||
dr_commit = subprocess.run([git, "commit", "-m", f'JSON update for wallet {wallet} {comment}'], cwd=destfolder, capture_output=True, text=True)
|
dr_commit = subprocess.run([git, "commit", "-m", f'JSON update wallet {wallet} {label} {comment}'], cwd=destfolder, capture_output=True, text=True)
|
||||||
# This produces return code = 1 if it commits OK
|
# This produces return code = 1 if it commits OK
|
||||||
if dr_commit.returncode != 0:
|
if dr_commit.returncode != 0:
|
||||||
msgdata = 'Ask a nerd to fix this.\n\n' + dr_commit.stderr + '\n\n' + dr_commit.stdout + '\n\nreturn code: ' + str(dr_commit.returncode)
|
msgdata = 'Ask a nerd to fix this.\n\n' + dr_commit.stderr + '\n\n' + dr_commit.stdout + '\n\nreturn code: ' + str(dr_commit.returncode)
|
||||||
@ -368,7 +375,7 @@ def scanupload(request, path=None):
|
|||||||
|
|
||||||
save_json(wd)
|
save_json(wd)
|
||||||
make_wallet(wallet)
|
make_wallet(wallet)
|
||||||
commit_json()
|
commit_json(wd)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
print(f'--- INVALID JSON Update form submitted')
|
print(f'--- INVALID JSON Update form submitted')
|
||||||
@ -406,7 +413,7 @@ def scanupload(request, path=None):
|
|||||||
filesaved = True
|
filesaved = True
|
||||||
save_json(wallet_blank_json)
|
save_json(wallet_blank_json)
|
||||||
make_wallet(wallet)
|
make_wallet(wallet)
|
||||||
commit_json()
|
commit_json(waldata)
|
||||||
files = []
|
files = []
|
||||||
dirs = []
|
dirs = []
|
||||||
# print(f'! - FORM scanupload - start {wallet} {dirpath}')
|
# print(f'! - FORM scanupload - start {wallet} {dirpath}')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user