~mterry/ubuntu-calculator-app/confined

1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

if [[ -z `which autopilot3` ]]; then
  echo "Autopilot is not installed. Skip"
  exit
fi

SCRIPTPATH=`dirname $0`
pushd ${SCRIPTPATH}
autopilot3 run ubuntu_calculator_app
popd