1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-17 07:40:47 +03:00

Fix case-sensitive filename errors

These filenames worked fine on case-insensitive file systems, but not on
a case-sensitive file system.
This commit is contained in:
Philip Chimento 2022-04-14 22:24:15 -07:00
parent e1266e4a5f
commit 51d7e99895
2 changed files with 8 additions and 8 deletions

View file

@ -5,10 +5,10 @@
set: $A = $PATH/_Results_Actual/$CASE.txt
set: $I = $PATH/_Results_Ideal/$CASE.txt
set: $K1 = inform7/internal/Inter/BasicInformKit/kinds/Macros.neptune
set: $K2 = inform7/internal/Inter/BasicInformKit/kinds/Protocols.neptune
set: $K3 = inform7/internal/Inter/BasicInformKit/kinds/Core.neptune
set: $K4 = inform7/internal/Inter/BasicInformKit/kinds/Punctuation.neptune
set: $K1 = inform7/Internal/Inter/BasicInformKit/kinds/Macros.neptune
set: $K2 = inform7/Internal/Inter/BasicInformKit/kinds/Protocols.neptune
set: $K3 = inform7/Internal/Inter/BasicInformKit/kinds/Core.neptune
set: $K4 = inform7/Internal/Inter/BasicInformKit/kinds/Punctuation.neptune
mkdir: $PATH/_Results_Actual
step: services/calculus-test/Tangled/calculus-test -load $K1 -load $K2 -load $K3 -load $K4 -interpret $PATH/$CASE.txt >$A 2>&1

View file

@ -5,10 +5,10 @@
set: $A = $PATH/_Results_Actual/$CASE.txt
set: $I = $PATH/_Results_Ideal/$CASE.txt
set: $K1 = inform7/internal/Inter/BasicInformKit/kinds/Macros.neptune
set: $K2 = inform7/internal/Inter/BasicInformKit/kinds/Protocols.neptune
set: $K3 = inform7/internal/Inter/BasicInformKit/kinds/Core.neptune
set: $K4 = inform7/internal/Inter/BasicInformKit/kinds/Punctuation.neptune
set: $K1 = inform7/Internal/Inter/BasicInformKit/kinds/Macros.neptune
set: $K2 = inform7/Internal/Inter/BasicInformKit/kinds/Protocols.neptune
set: $K3 = inform7/Internal/Inter/BasicInformKit/kinds/Core.neptune
set: $K4 = inform7/Internal/Inter/BasicInformKit/kinds/Punctuation.neptune
mkdir: $PATH/_Results_Actual
step: services/kinds-test/Tangled/kinds-test -load $K1 -load $K2 -load $K3 -load $K4 -interpret $PATH/$CASE.txt >$A 2>&1