#!/bin/bash

if [ "`which getdir`" == "" ];then
  xmessage -center "please copy resource/getdir to /usr/local/bin"
  exit 1
fi

base=`getdir $0`
cd $base
base=`pwd`
cd $base
cd resource
./main.wxb "$@"
