Sha256: 6d039e1e34c90d1a9ebf514754a03a9c12fe5f64b6b6b2d97fb3a8b4143d05d2
Contents?: true
Size: 1.36 KB
Versions: 8
Compression:
Stored size: 1.36 KB
Contents
#! /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. ANT=$(which ant) if [ -z "$1" ] then echo 'usage: emulate <platform>' echo 'where <platform> can be one of "blackberry" or "playbook"' echo 'NOTE: please customize the project.properties file first before using this command!' exit 0 fi if [ "$1" == "blackberry" ] then $ANT blackberry load-simulator else if [ "$1" == "playbook" ] then $ANT playbook load-simulator else echo 'Platform not recognized! Please use one of "blackberry" or "playbook" for the platform parameter.' fi fi
Version data entries
8 entries across 4 versions & 1 rubygems