From 1be4415813c774cd0460a9b5e62a8f49d0b360c4 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Sat, 3 Sep 2005 02:16:49 +0000 Subject: [PATCH] default to using current script as test file if there is no /bin/sh --- test/test_metaflac.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test_metaflac.sh b/test/test_metaflac.sh index 744199f..0846b01 100755 --- a/test/test_metaflac.sh +++ b/test/test_metaflac.sh @@ -68,8 +68,10 @@ run_metaflac () echo "Generating stream..." if [ -f /bin/sh.exe ] ; then inputfile=/bin/sh.exe -else +elif [ -f /bin/sh ] ; then inputfile=/bin/sh +else + inputfile="$0" fi if run_flac --force --verify -0 --output-name=$flacfile --force-raw-format --endian=big --sign=signed --channels=1 --bps=8 --sample-rate=44100 $inputfile ; then chmod +w $flacfile -- 2.7.4