We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03580c3 commit f9886a4Copy full SHA for f9886a4
.github/workflows/LuaWatcom.yml
@@ -109,9 +109,11 @@ jobs:
109
run: |
110
lua demo/util/PE95TIME.LUA dist/bin/LUANT.EXE
111
112
- - name: Set modification time on all repository files to their respective commit
+ - name: Set modification time on scripts to their respective commit
113
114
- git ls-files -z | xargs -0 -I{} touch --date="$(git log -1 --pretty=format:%cI -- {})" {}
+ cd demo
115
+ git ls-files -z | xargs -0 -I{} bash -c 'touch --date="$(git log -1 --pretty=format:%cI -- "$0")" "$0"' {}
116
+ cd ..
117
118
- name: Remove UNIX executable permission from non-UNIX executable files
119
0 commit comments