From d4ee7ab0408f28cb95cec26a04e71f19470e043d Mon Sep 17 00:00:00 2001 From: Conduitry Date: Thu, 6 Jun 2019 17:13:11 -0400 Subject: [PATCH] site: quote degit repo argument (#726) --- site/content/docs/00-introduction.md | 4 ++-- site/src/routes/index.svelte | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/site/content/docs/00-introduction.md b/site/content/docs/00-introduction.md index 2c109fe..7483b16 100644 --- a/site/content/docs/00-introduction.md +++ b/site/content/docs/00-introduction.md @@ -42,8 +42,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 diff --git a/site/src/routes/index.svelte b/site/src/routes/index.svelte index 9b606e5..d312919 100644 --- a/site/src/routes/index.svelte +++ b/site/src/routes/index.svelte @@ -50,9 +50,9 @@
 # for Rollup
-npx degit sveltejs/sapper-template#rollup my-app
+npx degit "sveltejs/sapper-template#rollup" my-app
 # for webpack
-npx degit sveltejs/sapper-template#webpack my-app
+npx degit "sveltejs/sapper-template#webpack" my-app
 cd my-app
 
 npm install