From 6d813c26dce94ab2818ae5711eb2646f0a7e1aed Mon Sep 17 00:00:00 2001 From: Kevin Tewouda Date: Sat, 8 Feb 2020 21:21:32 +0100 Subject: [PATCH] Update default shell to use on Windows The commands used in the tutorial can't work on Windows with the command prompt, so I specify PowerShell instead of it --- site/content/blog/2019-04-16-svelte-for-new-developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/blog/2019-04-16-svelte-for-new-developers.md b/site/content/blog/2019-04-16-svelte-for-new-developers.md index fc8e993e88..c2526cf242 100644 --- a/site/content/blog/2019-04-16-svelte-for-new-developers.md +++ b/site/content/blog/2019-04-16-svelte-for-new-developers.md @@ -14,7 +14,7 @@ If you get stuck at any point following this guide, the best place to ask for he ## First things first -You'll be using the *command line*, also known as the terminal. On Windows, you can access it by running **Command Prompt** from the Start menu; on a Mac, hit `Cmd` and `Space` together to bring up **Spotlight**, then start typing `Terminal.app`. On most Linux systems, `Ctrl-Alt-T` brings up the command line. +You'll be using the *command line*, also known as the terminal. On Windows, you can access it by running **PowerShell** from the Start menu (or **Command Prompt** if you have a version of Windows lower than 7, but in this case you will have to adjust the following commands); on a Mac, hit `Cmd` and `Space` together to bring up **Spotlight**, then start typing `Terminal.app`. On most Linux systems, `Ctrl-Alt-T` brings up the command line. The command line is a way to interact with your computer (or another computer! but that's a topic for another time) with more power and control than the GUI (graphical user interface) that most people use day-to-day.