From 352090875cbef3d0bf48599c2873e4fb0805bd0f Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Thu, 30 Jun 2016 18:33:07 -0600 Subject: [PATCH] put run script in the right folder for packaging --- python/servo/package_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index 4693d0136e0..fca44c00006 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -174,7 +174,7 @@ class PackageCommands(CommandBase): '--pref', 'shell.builtin-key-shortcuts.enabled=false', path.join(browserhtml_path, 'out', 'index.html')] - runservo = os.open(dir_to_package + 'runservo.sh', os.O_WRONLY | os.O_CREAT, int("0755", 8)) + runservo = os.open(dir_to_package + '/runservo.sh', os.O_WRONLY | os.O_CREAT, int("0755", 8)) os.write(runservo, "./servo " + ' '.join(servo_args)) os.close(runservo) print("Creating tarball")