Skip to content

Commit bb9a129

Browse files
authored
Update part2c.md
Add "export" and "&&"
1 parent 6171043 commit bb9a129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/2/es/part2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ Agregue a la vista que muestra los datos de un país, el informe meteorológico
647647
Suponiendo que la clave api es <i>t0p53cr3t4p1k3yv4lu3</i>, cuando la aplicación se inicia así:
648648

649649
```bash
650-
REACT_APP_API_KEY='t0p53cr3t4p1k3yv4lu3' npm start // For Linux/macOS Bash
650+
export REACT_APP_API_KEY='t0p53cr3t4p1k3yv4lu3' && npm start // For Linux/macOS Bash
651651
($env:REACT_APP_API_KEY='t0p53cr3t4p1k3yv4lu3') -and (npm start) // For Windows PowerShell
652652
set REACT_APP_API_KEY='t0p53cr3t4p1k3yv4lu3' && npm start // For Windows cmd.exe
653653
```

0 commit comments

Comments
 (0)