Skip to content

Commit e7807b2

Browse files
committed
Preserve modification time when copying content to disk images.
1 parent 129ba7e commit e7807b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ jobs:
116116
serial="0x$(echo "$label$(git log -1 --format=%ct)" | sha256sum | cut -c1-8)"
117117
mformat -C -i dist/Lua160k.ima -v "$label" -f 160 -N $serial
118118
files=$(find dist/bin/LUA16.EXE demo/core/*.LUA | sort | xargs)
119-
mcopy -i dist/Lua160k.ima $files ::
119+
mcopy -mi dist/Lua160k.ima $files ::
120120
121121
- name: Create 1.4M Multi-Platform Floppy Diskette Image
122122
run: |
123123
label="LUA MULTIOS"
124124
serial="0x$(echo "$label$(git log -1 --format=%ct)" | sha256sum | cut -c1-8)"
125125
mformat -C -i dist/LuaMulti.ima -v "$label" -f 1440 -N $serial
126126
files=$(find dist/bin/*.EXE demo/core/*.LUA demo/xtra/*.LUA | sort | xargs)
127-
mcopy -i dist/LuaMulti.ima $files ::
127+
mcopy -mi dist/LuaMulti.ima $files ::
128128
129129
- name: Create Floppy Disk Images Zip
130130
run: |

0 commit comments

Comments
 (0)