Fix: use 1 based instead of 0 based fileid

This commit is contained in:
2026-04-06 21:47:10 +08:00
parent 69f2502823
commit a71e244a60
6 changed files with 28 additions and 19 deletions

View File

@@ -1,5 +1,12 @@
.PHONY: all clean docker
docker:
docker: docker-build docker-run
docker-build:
docker build . -t afs2026
docker-run:
docker run afs2026 -C code
docker-shell:
docker run -it --rm --entrypoint sh afs2026