From 2189fc52c415a6c8e34119aeb09abffd641d0757 Mon Sep 17 00:00:00 2001 From: Ryan Cao <47623453+ryanccn@users.noreply.github.com> Date: Sat, 30 Nov 2019 15:35:21 +0800 Subject: [PATCH 1/2] Fix permissions error --- packages/docs/docs/guide/getting-started.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/docs/docs/guide/getting-started.md b/packages/docs/docs/guide/getting-started.md index a98d6661e5..731be97e07 100644 --- a/packages/docs/docs/guide/getting-started.md +++ b/packages/docs/docs/guide/getting-started.md @@ -12,6 +12,9 @@ If you only want to play around with VuePress, you can install it globally: # install globally yarn global add vuepress # OR npm install -g vuepress +# create the project folder +mkdir vuepress-starter/ && cd vuepress-starter/ + # create a markdown file echo '# Hello VuePress' > README.md From 5ea900626e48ba34a8abd61258ccdd92612799be Mon Sep 17 00:00:00 2001 From: meteorlxy Date: Mon, 2 Dec 2019 10:52:22 +0800 Subject: [PATCH 2/2] tweaks --- packages/docs/docs/guide/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/docs/guide/getting-started.md b/packages/docs/docs/guide/getting-started.md index 731be97e07..b9ebde92b2 100644 --- a/packages/docs/docs/guide/getting-started.md +++ b/packages/docs/docs/guide/getting-started.md @@ -13,7 +13,7 @@ If you only want to play around with VuePress, you can install it globally: yarn global add vuepress # OR npm install -g vuepress # create the project folder -mkdir vuepress-starter/ && cd vuepress-starter/ +mkdir vuepress-starter && cd vuepress-starter # create a markdown file echo '# Hello VuePress' > README.md