Commit a5fc7891 authored by あきと ミズキト's avatar あきと ミズキト Committed by John Wu

build: Addressed file not found

parent 3eb96332
......@@ -119,6 +119,9 @@ def load_config(args):
config['keyStore'] = 'release-key.jks'
# Load prop file
if not os.path.exists(args.config):
error(f'Please make sure {args.config} existed')
with open(args.config, 'r') as f:
for line in [l.strip(' \t\r\n') for l in f]:
if line.startswith('#') or len(line) == 0:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment