Skip to content

Commit 3344517

Browse files
authored
fixed typo
This line `"test": "echo \"Error: no test specified\" && exit 1"` had nested double quotes that caused an error.
1 parent c44d86f commit 3344517

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/tutorials/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Add the Snowpack development server to `package.json` under as the `start` scrip
7272
```diff
7373
"scripts": {
7474
+ "start": "snowpack dev",
75-
"test": "echo \"Error: no test specified\" && exit 1"
75+
"test": "echo 'Error: no test specified' && exit 1"
7676
},
7777

7878
```

0 commit comments

Comments
 (0)