Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. #! /bin/sh
  2. #
  3. # Licensed to the Apache Software Foundation (ASF) under one
  4. # or more contributor license agreements. See the NOTICE file
  5. # distributed with this work for additional information
  6. # regarding copyright ownership. The ASF licenses this file
  7. # to you under the Apache License, Version 2.0 (the
  8. # "License"); you may not use this file except in compliance
  9. # with the License. You may obtain a copy of the License at
  10. #
  11. # http://www.apache.org/licenses/LICENSE-2.0
  12. #
  13. # Unless required by applicable law or agreed to in writing,
  14. # software distributed under the License is distributed on an
  15. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. # KIND, either express or implied. See the License for the
  17. # specific language governing permissions and limitations
  18. # under the License.
  19. #
  20. # the two lines below are to get the current folder, and resolve symlinks
  21. SCRIPT="$0"
  22. # need this for relative symlinks
  23. while [ -h "$SCRIPT" ] ; do
  24. SCRIPT=`readlink "$SCRIPT"`
  25. done
  26. BINDIR=$( cd "$( dirname "$SCRIPT" )" && pwd )
  27. TESTDIR=$BINDIR/mobile-spec-test
  28. echo "TESTDIR" $SCRIPT
  29. # get the latest mobile-spec
  30. git clone git://github.com/apache/cordova-mobile-spec.git $BINDIR/mobile-spec
  31. # clobber test if it exists
  32. if [ -e $TESTDIR ]
  33. then
  34. rm -rf $TESTDIR
  35. fi
  36. # generate a working proj
  37. $BINDIR/create $TESTDIR org.apache.cordova.test CordovaTest
  38. # kill the default app and replace it w/ mobile-spec
  39. rm -rf $TESTDIR/www
  40. mv $BINDIR/mobile-spec $TESTDIR/www
  41. # build it, launch it and start logging on stdout
  42. $TESTDIR/cordova/debug && $TESTDIR/cordova/log