Skip to content

Commit

Permalink
Adjust Tokens.md to correspond to codebase (#2192)
Browse files Browse the repository at this point in the history
Tokens page shows that {MKDIR} only calls mkdir Windows
command, so it would be confusing to people who write
"if not exist {MKDIR} blabla" to get an error while compiling
  • Loading branch information
UAVXP authored Mar 6, 2024
1 parent 5d6d7ff commit ae9673d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/Tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ The available tokens, and their replacements:
| {COPYDIR} | xcopy /Q /E /Y /I {args} | cp -rf {args} |
| {DELETE} | del {args} | rm -rf {args} |
| {ECHO} | echo {args} | echo {args} |
| {MKDIR} | mkdir {args} | mkdir -p {args} |
| {MKDIR} | IF NOT EXIST {args} (mkdir {args}) | mkdir -p {args} |
| {MOVE} | move /Y {args} | mv -f {args} |
| {RMDIR} | rmdir /S /Q {args} | rm -rf {args} |
| {TOUCH} | type nul >> {arg} && copy /b {arg}+,, {arg} | touch {args} |
Expand Down

0 comments on commit ae9673d

Please sign in to comment.