Skip to content

Commit

Permalink
windows_install_prerequisites: Fix generation of PATH command
Browse files Browse the repository at this point in the history
Accidental regression in 7c8d5d2 - escape
character didn't move with PATH.

Reported on forum https://esp32.com/viewtopic.php?f=13&t=8201
  • Loading branch information
projectgus committed Nov 26, 2018
1 parent 90a6c9a commit b7f56e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/windows/windows_install_prerequisites.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ rm ~/${TOOLCHAIN_ZIP}
cat > /etc/profile.d/esp32_toolchain.sh << EOF
# This file was created by ESP-IDF windows_install_prerequisites.sh
# and will be overwritten if that script is run again.
export PATH="\/opt/xtensa-esp32-elf/bin:$PATH"
export PATH="/opt/xtensa-esp32-elf/bin:\$PATH"
EOF

# clean up pacman package cache to save some disk space
Expand Down

0 comments on commit b7f56e8

Please sign in to comment.