Skip to content

Commit 032523a

Browse files
authored
Merge pull request #208 from andrewbird/ci-fix
CI: Force lower case when unzipping
2 parents b8ef68f + d383546 commit 032523a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

ci_prereq.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -60,28 +60,28 @@ cd ${HOME}/.dosemu/drive_c && (
6060
mkdir -p bin
6161

6262
# Boot files
63-
unzip -L -q ${HERE}/kernel.zip
63+
unzip -LL -q ${HERE}/kernel.zip
6464
cp -p bin/kernl386.sys ./kernel.sys
65-
unzip -L -q ${HERE}/freecom.zip
65+
unzip -LL -q ${HERE}/freecom.zip
6666
cp -p bin/command.com ./command.com
6767
cp -p /usr/share/dosemu/dosemu2-cmds-0.3/c/fdconfig.sys .
6868

6969
# Development files
70-
unzip -L -q ${HERE}/djgpp_mk.zip
70+
unzip -LL -q ${HERE}/djgpp_mk.zip
7171
cp -p devel/djgpp/bin/make.exe bin/.
72-
unzip -L -q ${HERE}/upx.zip
72+
unzip -LL -q ${HERE}/upx.zip
7373
cp -p devel/upx/upx.exe bin/.
7474
echo PATH to make and upx binaries is 'c:/bin'
7575

76-
unzip -L -q ${HERE}/nasm.zip
76+
unzip -LL -q ${HERE}/nasm.zip
7777
echo PATH to nasm binary is 'c:/devel/nasm'
7878

79-
# unzip -L -q ${HERE}/i16gcc.zip
80-
# unzip -L -q ${HERE}/i16newli.zip
81-
# unzip -L -q ${HERE}/i16butil.zip
82-
# unzip -L -q ${HERE}/i16lbi86.zip
79+
# unzip -LL -q ${HERE}/i16gcc.zip
80+
# unzip -LL -q ${HERE}/i16newli.zip
81+
# unzip -LL -q ${HERE}/i16butil.zip
82+
# unzip -LL -q ${HERE}/i16lbi86.zip
8383
# echo PATH to ia16 binaries is 'c:/devel/i16gnu/bin'
8484

85-
unzip -L -q ${HERE}/watcomc.zip
85+
unzip -LL -q ${HERE}/watcomc.zip
8686
echo PATH to watcom binaries is 'c:/devel/watcomc/binw'
8787
)

0 commit comments

Comments
 (0)