summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-07 06:47:01 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-07 06:47:01 +0000
commit1ebc859ff8a018b3d98e6bd7923d7d877cf76088 (patch)
tree8a3a01ac7e72effdb325d1e40f9dd21e62609c5a /TOOLS
parent07e557c6d93887fcfb135d47edcfa1e13c753db6 (diff)
downloadmpv-1ebc859ff8a018b3d98e6bd7923d7d877cf76088.tar.bz2
mpv-1ebc859ff8a018b3d98e6bd7923d7d877cf76088.tar.xz
Replace bash-specific [[]] construct by proper a proper [] test.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27229 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rwxr-xr-xTOOLS/aconvert2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/aconvert b/TOOLS/aconvert
index cf74abb1f9..37a031115f 100755
--- a/TOOLS/aconvert
+++ b/TOOLS/aconvert
@@ -3,7 +3,7 @@
# Author: Jonas Jermann
# Description: A hack to allow mencoder to encode from an audio only file
-if [[ $1 = "" ]]; then
+if [ "$1" = "" ]; then
echo "Usage: $0 <\"input file\"> <\"output file\"> <\"options\">"
exit 0
fi