Compare commits

...

3 Commits

Author SHA1 Message Date
dirkf
683a10d385
Merge 7f5ea5a28c into e1b3fa242c 2024-07-28 01:30:23 +09:00
df
7f5ea5a28c Avoid masking errors with export var=val
Now passes shellcheck.net!
2021-10-27 12:43:59 +01:00
df
f2b0d01274 Remove syntactically incorrect and redundant case
Now passes shellcheck.net!
2021-10-27 12:38:58 +01:00
2 changed files with 3 additions and 5 deletions

View File

@ -14,9 +14,7 @@ case "$YTDL_TEST_SET" in
test_set="-I test_(?!$DOWNLOAD_TESTS).+\.py"
multiprocess_args="--processes=4 --process-timeout=540"
;;
*)
break
;;
esac
# shellcheck disable=SC2086
nosetests test --verbose $test_set $multiprocess_args

View File

@ -14,7 +14,7 @@ if [ ! -d wine-py2exe ]; then
mkdir wine-py2exe
cd wine-py2exe
export WINEPREFIX=`pwd`
WINEPREFIX=$(pwd); export WINEPREFIX
axel -a "http://www.python.org/ftp/python/2.7/python-2.7.msi"
axel -a "http://downloads.sourceforge.net/project/py2exe/py2exe/0.6.9/py2exe-0.6.9.win32-py2.7.exe"
@ -45,7 +45,7 @@ if [ ! -d wine-py2exe ]; then
else
export WINEPREFIX="$( cd wine-py2exe && pwd )"
WINEPREFIX=$( cd wine-py2exe && pwd ); export WINEPREFIX
fi