Skip to content

Commit e901825

Browse files
cdervgithub-actions[bot]
authored andcommitted
Remove space in powershell command
Better not have them just in case, even if both with or without spaces work. (cherry picked from commit a8cc7f2)
1 parent a887090 commit e901825

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/troubleshooting/index.qmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Setting `QUARTO_PRINT_STACK=true` in your environment will cause Quarto to print
6868
On PowerShell:
6969

7070
```powershell
71-
$env:QUARTO_PRINT_STACK = "true"
71+
$env:QUARTO_PRINT_STACK="true"
7272
```
7373

7474
## Unix
@@ -92,7 +92,7 @@ Quarto will print more information about its internal state if you set `QUARTO_L
9292
On PowerShell:
9393

9494
```powershell
95-
$env:QUARTO_LOG_LEVEL = "DEBUG"
95+
$env:QUARTO_LOG_LEVEL="DEBUG"
9696
```
9797

9898
## Unix
@@ -138,7 +138,7 @@ In this example, we're setting the maximum amount of memory to be allocated by D
138138
On PowerShell:
139139

140140
```powershell
141-
$env:QUARTO_DENO_V8_OPTIONS = "--max-old-space-size=8192"
141+
$env:QUARTO_DENO_V8_OPTIONS="--max-old-space-size=8192"
142142
```
143143

144144
## Unix

0 commit comments

Comments
 (0)