| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 | 2 |
| 3 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 3 # Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
| 4 # for details. All rights reserved. Use of this source code is governed by a | 4 # for details. All rights reserved. Use of this source code is governed by a |
| 5 # BSD-style license that can be found in the LICENSE.md file. | 5 # BSD-style license that can be found in the LICENSE.md file. |
| 6 | 6 |
| 7 # Setup | 7 # Setup |
| 8 # - Install and build fletch. | 8 # - Install and build fletch. |
| 9 # - Install Cocoapods. | 9 # - Install Cocoapods. |
| 10 # - Run immic (output in generated/packages/immi). | 10 # - Run immic (output in generated/packages/immi). |
| 11 # - Run servicec (output in generated/packages/service). | 11 # - Run servicec (output in generated/packages/service). |
| 12 # - Generate libfletch.a for your choice of platforms and add it to xcode. | 12 # - Generate libfletch.a for your choice of platforms and add it to xcode. |
| 13 # - Generate snapshot of your Dart program and add it to xcode. | 13 # - Generate snapshot of your Dart program and add it to xcode. |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 fi | 86 fi |
| 87 | 87 |
| 88 set +x | 88 set +x |
| 89 | 89 |
| 90 if [[ $# -eq 1 ]]; then | 90 if [[ $# -eq 1 ]]; then |
| 91 echo | 91 echo |
| 92 echo "Only ran task $1." | 92 echo "Only ran task $1." |
| 93 echo "Possible tasks: immi, fletch, and snapshot" | 93 echo "Possible tasks: immi, fletch, and snapshot" |
| 94 echo "If Fletch or any IMMI files changed re-run compile.sh without argument
s." | 94 echo "If Fletch or any IMMI files changed re-run compile.sh without argument
s." |
| 95 fi | 95 fi |
| OLD | NEW |