#!/bin/sh if [ -e @target@ ] && [ -e ./Makefile.am ] ; then echo "*** Running uninstalled @target@ ***" export TICKYPIP_WRAPPER_PATH="$PWD/@wrapper@" THIS_EXE="./@target@" elif [ -e ./src/@target@ ] && [ -e ./src/Makefile.am ] ; then echo "*** Running uninstalled @target@ ***" export TICKYPIP_WRAPPER_PATH="$PWD/src/@wrapper@" THIS_EXE="./src/@target@" else export TICKYPIP_WRAPPER_PATH="@bindir@/@wrapper@" THIS_EXE="@bindir@/@target@" fi exec @runtime@ --debug $THIS_EXE "$@"