1#!/bin/sh
2
3if [ ! -d build ] ; then
4    echo "Build directory not present, will run make setup"
5    make setup
6    exit
7fi
8