Return-Path: X-Original-To: apmail-lucenenet-commits-archive@www.apache.org Delivered-To: apmail-lucenenet-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 48A7A11C80 for ; Mon, 21 Jul 2014 18:14:10 +0000 (UTC) Received: (qmail 42520 invoked by uid 500); 21 Jul 2014 18:14:10 -0000 Delivered-To: apmail-lucenenet-commits-archive@lucenenet.apache.org Received: (qmail 42413 invoked by uid 500); 21 Jul 2014 18:14:10 -0000 Mailing-List: contact commits-help@lucenenet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@lucenenet.apache.org Delivered-To: mailing list commits@lucenenet.apache.org Received: (qmail 42282 invoked by uid 99); 21 Jul 2014 18:14:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jul 2014 18:14:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 7E9A29AD9B7; Mon, 21 Jul 2014 18:14:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mherndon@apache.org To: commits@lucenenet.apache.org Date: Mon, 21 Jul 2014 18:14:09 -0000 Message-Id: <6fd961b121f14dce86ec4f7a1401b527@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/7] git commit: ensuring build script still works on linux Repository: lucenenet Updated Branches: refs/heads/pcl d416bcc1a -> 2cc449a80 ensuring build script still works on linux Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/2a82836d Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/2a82836d Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/2a82836d Branch: refs/heads/pcl Commit: 2a82836db7180156904170abf45817869ecd887a Parents: d416bcc Author: Michael Herndon Authored: Sat Jul 19 13:18:42 2014 -0400 Committer: Michael Herndon Committed: Sat Jul 19 13:18:42 2014 -0400 ---------------------------------------------------------------------- build.fsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/2a82836d/build.fsx ---------------------------------------------------------------------- diff --git a/build.fsx b/build.fsx index a26f192..129139e 100644 --- a/build.fsx +++ b/build.fsx @@ -37,7 +37,7 @@ Target "Restore" (fun _ -> let exitCode = out.ExitCode - if not (exitCode = 0 || exitCode = 100) then + if not (exitCode = 0 || exitCode = 100 || exitCode = 255) then failwithf "Unable to Restore Packages: %i" exitCode ) @@ -55,7 +55,7 @@ Target "Build:Core" (fun _ -> let exitCode = out.ExitCode - if not (exitCode = 0 || exitCode = 100) then + if not (exitCode = 0 || exitCode = 100 || exitCode = 255) then failwithf "Unable to Build Core: %i" exitCode ) @@ -74,7 +74,7 @@ Target "Build:TestFramework" (fun _ -> let exitCode = out.ExitCode - if not (exitCode = 0 || exitCode = 100) then + if not (exitCode = 0 || exitCode = 100 || exitCode = 255) then failwithf "Unable to Build TestFramework: %i" exitCode ) @@ -93,7 +93,7 @@ Target "Build:Core:Tests" (fun _ -> let exitCode = out.ExitCode - if not (exitCode = 0 || exitCode = 100) then + if not (exitCode = 0 || exitCode = 100 || exitCode = 255) then failwithf "Unable to Build Core Tests: %i" exitCode ) @@ -111,7 +111,7 @@ Target "Test:Core" (fun _ -> let exitCode = out.ExitCode - if not (exitCode = 0 || exitCode = 100) then + if not (exitCode = 0 || exitCode = 100 || exitCode = 255) then failwithf "Tests Failed: %i" exitCode )