🎨
This commit is contained in:
parent
ab73f4c94a
commit
78aff6a39f
1 changed files with 3 additions and 0 deletions
|
@ -19,6 +19,7 @@ def main():
|
||||||
call_asar(archive, output_dir)
|
call_asar(archive, output_dir)
|
||||||
shutil.rmtree(output_dir)
|
shutil.rmtree(output_dir)
|
||||||
|
|
||||||
|
|
||||||
def copy_js(js_source_files, output_dir):
|
def copy_js(js_source_files, output_dir):
|
||||||
for source_file in js_source_files:
|
for source_file in js_source_files:
|
||||||
output_filename = os.path.splitext(source_file)[0] + '.js'
|
output_filename = os.path.splitext(source_file)[0] + '.js'
|
||||||
|
@ -26,6 +27,7 @@ def copy_js(js_source_files, output_dir):
|
||||||
safe_mkdir(os.path.dirname(output_path))
|
safe_mkdir(os.path.dirname(output_path))
|
||||||
shutil.copy2(source_file, output_path)
|
shutil.copy2(source_file, output_path)
|
||||||
|
|
||||||
|
|
||||||
def call_asar(archive, output_dir):
|
def call_asar(archive, output_dir):
|
||||||
js_dir = os.path.join(output_dir, 'atom')
|
js_dir = os.path.join(output_dir, 'atom')
|
||||||
asar = os.path.join(SOURCE_ROOT, 'node_modules', 'asar', 'bin', 'asar')
|
asar = os.path.join(SOURCE_ROOT, 'node_modules', 'asar', 'bin', 'asar')
|
||||||
|
@ -45,6 +47,7 @@ def find_node():
|
||||||
return full_path
|
return full_path
|
||||||
return 'node'
|
return 'node'
|
||||||
|
|
||||||
|
|
||||||
def safe_mkdir(path):
|
def safe_mkdir(path):
|
||||||
try:
|
try:
|
||||||
os.makedirs(path)
|
os.makedirs(path)
|
||||||
|
|
Loading…
Reference in a new issue