From 335fa482569b8e1879d70383e63fe7be04ec9216 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Stabell?= Date: Sun, 3 Feb 2019 09:42:30 +0800 Subject: [PATCH] Quote hash-marks in commands At least some shells (I'm using zsh) treat ```#``` as the start of comments, so you'd end up with: ```bash npx degit 'sveltejs/sapper-template ``` instead of ```bash npx degit 'sveltejs/sapper-template#rollup ``` So it's probably better to quote shell arguments that contain ```#``` to ensure they're passed to the command. --- content/guide/00-introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/guide/00-introduction.md b/content/guide/00-introduction.md index 4fc3f05..fcccd01 100644 --- a/content/guide/00-introduction.md +++ b/content/guide/00-introduction.md @@ -38,8 +38,8 @@ For web developers, the stakes are generally lower than for combat engineers. Bu The easiest way to start building a Sapper app is to clone the [sapper-template](https://github.com/sveltejs/sapper-template) repo with [degit](https://github.com/Rich-Harris/degit): ```bash -npx degit sveltejs/sapper-template#rollup my-app -# or: npx degit sveltejs/sapper-template#webpack my-app +npx degit 'sveltejs/sapper-template#rollup' my-app +# or: npx degit 'sveltejs/sapper-template#webpack' my-app cd my-app npm install npm run dev