From d3070205ac8948bca95afc447e20fdc67fe6caf3 Mon Sep 17 00:00:00 2001 From: Tim Dalbey Date: Wed, 8 Feb 2017 16:20:03 -0500 Subject: [PATCH] Update getting-started.md Running through the setup and accidentally ran `npm install --save @angular/material` in my projects folder, quickly realized i forgot to cd in there. Thought it would be frustrating if someone ran through the entire process of setting up without cd-ing. --- guides/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/getting-started.md b/guides/getting-started.md index d99469afa559..3873132fd0fd 100644 --- a/guides/getting-started.md +++ b/guides/getting-started.md @@ -9,7 +9,7 @@ Get started with Angular Material using the Angular CLI. ## Create a new project ```bash - ng new my-project + ng new my-project && cd my-project ``` The new command creates a project with a build system for your Angular app.