move check for binary down since osx binaries are no longer 'fat'

This commit is contained in:
kytv
2012-07-12 22:43:12 +00:00
parent 0d8bcd5dad
commit 945cc55b54

View File

@@ -209,14 +209,6 @@ failed() {
esac
}
if [ ! -r "${WRAPPER_CMD}" ]; then
echo "Unable to locate ${WRAPPER_CMD} in ${I2P}!"
echo
unsupported
echo
exit 1
fi
if [ -n "$FIXED_COMMAND" ]
then
COMMAND="$FIXED_COMMAND"
@@ -559,6 +551,13 @@ then
exit 1
fi
if [ ! -r "${WRAPPER_CMD}" ]; then
echo "Unable to locate ${WRAPPER_CMD} in ${I2P}!"
echo
unsupported
echo
exit 1
fi
# Build the nice clause
if [ "X$PRIORITY" = "X" ]