mirror of
https://github.com/lxsang/ant-http
synced 2024-11-16 08:38:22 +01:00
9 lines
199 B
Plaintext
9 lines
199 B
Plaintext
|
#!/bin/sh
|
||
|
UNAME=`uname -s`
|
||
|
|
||
|
if [ "$UNAME" = "Darwin" ]; then
|
||
|
DYLD_LIBRARY_PATH=$(dirname "$0")/plugins/ $(dirname "$0")/relay
|
||
|
else
|
||
|
LD_LIBRARY_PATH=$(dirname "$0")/plugins/ $(dirname "$0")/relay
|
||
|
fi
|