Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the dev docs robots.txt containing a literal \n instead of a newl…
…ine (bevyengine#14347) # Objective The robots.txt file for the [dev docs](https://dev-docs.bevyengine.org) looks like this `User-Agent: *\nDisallow: /` It should look like this ``` User-Agent: * Disallow: / ``` ## Solution Use [`ANSI-C`](https://www.gnu.org/software/bash/manual/bash.html#ANSI_002dC-Quoting) quoting to properly handle the `\n` ## Testing - [x] Run the fixed echo command in local terminal. - [ ] Wait for the dev doces to deploy and observe if the mistake has been fixed
- Loading branch information