Skip to content

Commit

Permalink
docs: remove quotes from echo
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 15, 2018
1 parent 9e63974 commit 55f250c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ footer: MIT Licensed | Copyright © 2018-present Evan You
npm install -g vuepress

# create a markdown file
echo "# Hello VuePress" > README.md
echo # Hello VuePress > README.md

# start writing
vuepress dev
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you just want to play around with VuePress, you can install it globally:
npm install -g vuepress

# create a markdown file
echo "# Hello VuePress" > README.md
echo # Hello VuePress > README.md

# start writing
vuepress dev
Expand All @@ -29,7 +29,7 @@ npm install -D vuepress
# create a docs directory
mkdir docs
# create a markdown file
echo "# Hello VuePress!" > docs/README.md
echo # Hello VuePress > docs/README.md

# start writing
npx vuepress dev docs
Expand Down

0 comments on commit 55f250c

Please sign in to comment.