~kowal-h/+junk/Energy98

« back to all changes in this revision

Viewing changes to tests/autopilot/run

  • Committer: Matthew Kowal
  • Date: 2015-02-16 04:19:33 UTC
  • Revision ID: kowal@null.net-20150216041933-k54cj2cq4lagssi0
Initial import

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
autopilot3 run Energy98
 
11
popd
 
12