Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BEB7DD8EC for ; Mon, 30 Jul 2012 19:58:37 +0000 (UTC) Received: (qmail 92180 invoked by uid 500); 30 Jul 2012 19:58:37 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 92117 invoked by uid 500); 30 Jul 2012 19:58:37 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 91777 invoked by uid 99); 30 Jul 2012 19:58:36 -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, 30 Jul 2012 19:58:36 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 8FCFD1A1F3; Mon, 30 Jul 2012 19:58:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: shazron@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [8/15] ios commit: Removed unused script. Message-Id: <20120730195836.8FCFD1A1F3@tyr.zones.apache.org> Date: Mon, 30 Jul 2012 19:58:36 +0000 (UTC) Removed unused script. Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/commit/81eb0a6e Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/tree/81eb0a6e Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/diff/81eb0a6e Branch: refs/heads/master Commit: 81eb0a6e7c2045ce2580fc2d44d434888c8a1829 Parents: 1e48801 Author: Shazron Abdullah Authored: Thu Jul 26 12:04:36 2012 -0700 Committer: Shazron Abdullah Committed: Mon Jul 30 12:52:26 2012 -0700 ---------------------------------------------------------------------- bin/bench | 48 ------------------------------------------------ 1 files changed, 0 insertions(+), 48 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/81eb0a6e/bin/bench ---------------------------------------------------------------------- diff --git a/bin/bench b/bin/bench deleted file mode 100755 index 64d8ceb..0000000 --- a/bin/bench +++ /dev/null @@ -1,48 +0,0 @@ -#! /bin/sh - -# -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. -# - -# -# Creates an app in `./bench` that posts results to http://cordova-bench.heroku.com with current Cordova/Android sha. -# -# USAGE -# ./bin/bench -# - -# clobber any existing bench -if [ -e ./bench ] -then - rm -rf ./bench -fi - -# create a benching app -./bin/create ./bench org.apache.cordova.bench CordovaBench - -# grab the latest bench www code -git clone git@github.com:brianleroux/cordova-bench.git - -# copy it into the app -cat ./cordova-bench/www/index.html > ./bench/assets/www/index.html - -# clean up -rm -rf ./cordova-bench - -# launch to the first device found -./bin/debug ./bench