Skip to content

Commit 5d74164

Browse files
committed
✏️ fix typo
1 parent 7407b32 commit 5d74164

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_library/adapter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Example usage:
3838
init -o:f /flag node server.js
3939
# write FLAG to GZCTF_FLAG environment, run as `ctf`
4040
init -o:e GZCTF_FLAG -u ctf -- /pwn
41-
# write GZCTF_FLAG to /flag with permission 444, run as `nobody`
41+
# write GZCTF_FLAG to /flag.txt with permission 444, run as `nobody`
4242
init -i:e GZCTF_FLAG -o:f /flag.txt -p 444 -u nobody -- python3 main.py
4343
```
4444

@@ -53,6 +53,6 @@ COPY --from=init /init /init
5353

5454
# ...
5555

56-
ENTRYPOINT ["/init", "-p", "444", "-u", "ctf", "--"]
56+
ENTRYPOINT ["/init", "-o:f", "/flag", "-p", "444", "-u", "ctf", "--"]
5757
CMD ["python3", "main.py"]
5858
```

0 commit comments

Comments
 (0)