From a634d5e363d3758c1d49cf38ec36e91fa4dcc0a8 Mon Sep 17 00:00:00 2001 From: Victor Sinkunas Date: Sat, 23 Jul 2022 17:37:46 +0200 Subject: [PATCH] Remove quotation marks CNAM file doesn't work if there are quotation marks in the domain, I had trouble with my own due to copying and pasting this command as it. Removing the quotations made it work again --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 6cdb9de..1578472 100644 --- a/readme.md +++ b/readme.md @@ -393,7 +393,7 @@ If `gh-pages` fails, you may find that you need to manually clean up the cache d Modify the deployment line to your deploy script if you use custom domain. This will prevent the deployment from removing the domain settings in GitHub. ``` -echo 'your_cutom_domain.online' > ./build/CNAME && gh-pages -d build" +echo your_cutom_domain.online > ./build/CNAME && gh-pages -d build" ``` ### Deploying with GitHub Actions