prepare: set execute permission for all.

This commit is contained in:
tecnovert
2019-07-25 17:47:24 +02:00
parent a5de9dbee4
commit a1b3aa74a1
2 changed files with 3 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ def prepareCore(coin, version, settings, data_dir):
with open(out_path, 'wb') as fout:
fout.write(fi.read())
fi.close()
os.chmod(out_path, stat.S_IRWXU)
os.chmod(out_path, stat.S_IRWXU | stat.S_IXGRP | stat.S_IXOTH)
def prepareDataDir(coin, settings, data_dir, chain, particl_mnemonic):