~verzegnassi-stefano/edit/brand-name-not-translatable

« back to all changes in this revision

Viewing changes to app/tests/autopilot/run

  • Committer: pawstr
  • Date: 2015-01-23 19:41:38 UTC
  • Revision ID: pawstr@gmail.com-20150123194138-bd8zysyrzcqa0uq6
All files added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
if [[ -z `which autopilot` ]]; then
 
4
  echo "Autopilot is not installed. Skip"
 
5
  exit
 
6
fi
 
7
 
 
8
SCRIPTPATH=`dirname $0`
 
9
pushd ${SCRIPTPATH}
 
10
autopilot run edIt
 
11
popd
 
12