From 4652db7246f202468844262b5a4e8a3497f04f2c Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Wed, 12 Jun 2013 11:07:03 +0100 Subject: [PATCH] Formatting: semicolons. --- common.jake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common.jake b/common.jake index 839cce402..d9112d415 100644 --- a/common.jake +++ b/common.jake @@ -466,7 +466,7 @@ global.sudo = function(/*Array or String*/ command) // First try without sudo command = normalizeCommand(command); - var returnCode = OS.system(command + " >/dev/null 2>&1") + var returnCode = OS.system(command + " >/dev/null 2>&1"); if (returnCode) { @@ -505,7 +505,7 @@ global.copyManPage = function(/*String*/ name, /*int*/ section) if (sudo(["cp", "-f", pageFile, manDir])) stream.print("\0red(Unable to copy the man file.\0)"); } -} +}; global.xcodebuildCanListSDKs = function() { @@ -591,12 +591,12 @@ task ("sudo-install-symlinks", function() task ("sudo-install-debug-symlinks", function() { - sudo("jake install-debug-symlinks") + sudo("jake install-debug-symlinks"); }); task ("clean-debug", function() { - SYSTEM.env['CONFIG'] = 'Debug' + SYSTEM.env['CONFIG'] = 'Debug'; spawnJake("clean"); });