Skip to content

Commit 979ab96

Browse files
authored
CI: Force lower case when unzipping (#176)
Sometimes DOS packages can have upper or mixed case filenames that Linux unzip doesn't recognise as needing downcasing.
1 parent c702c0d commit 979ab96

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ci_prereq.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,23 +62,23 @@ cd ${HOME}/.dosemu/drive_c && (
6262
mkdir -p bin
6363

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

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

78-
unzip -L -q ${HERE}/nasm.zip
78+
unzip -LL -q ${HERE}/nasm.zip
7979
echo PATH to nasm binary is 'c:/devel/nasm'
8080

81-
unzip -L -q ${HERE}/watcomc.zip
81+
unzip -LL -q ${HERE}/watcomc.zip
8282
echo PATH to watcom binaries is 'c:/devel/watcomc/binw'
8383

8484
# Turbo C

0 commit comments

Comments
 (0)