1#!/bin/sh
2
3BASEDIR="`dirname "$0"`"
4if [ $? -ne 0 ]; then
5    echo "WARNING: No dirname utility found!"
6    echo "         Script will only work if invoked from its parent directory."
7    BASEDIR="."
8fi
9
10"${BASEDIR}/dist/bin/hfsexplorer.sh" "$@"
11