alter on-disk representation (manifest files)

I just tried my freewheeling apps on Windows and noticed filenames
conflicting and failing to show up in the working tree on the
case-insensensitive file system.
This commit is contained in:
Kartik K. Agaram 2023-01-09 12:27:17 -08:00
parent 5587fa5f78
commit 85bdd1b30a
2 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ function live.versioned_filename(index, root)
end
function live.versioned_manifest(index)
return ('%04d-manifest'):format(index)
return ('%04d-fwmanifest'):format(index)
end
-- ========= on each frame, check for messages and alter the app as needed