From 5221154653eaee8f0ff573dcb502235af3b02455 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 30 Mar 2016 11:53:14 -0700 Subject: [PATCH] Remove logging --- tools/js2asar.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/js2asar.py b/tools/js2asar.py index fe33edbba744..7860176c93c7 100755 --- a/tools/js2asar.py +++ b/tools/js2asar.py @@ -29,7 +29,6 @@ def copy_files(source_files, output_dir): def call_asar(archive, output_dir): - print(output_dir) asar = os.path.join(SOURCE_ROOT, 'node_modules', 'asar', 'bin', 'asar') subprocess.check_call([find_node(), asar, 'pack', output_dir, archive])