Skip to content

Commit

Permalink
removed path from path in activation script on both windows and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Gadorek authored and Hahihula committed Jan 15, 2025
1 parent 8cd069f commit 4f41849
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bash_scripts/activate_idf_template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Function to print environment variables
print_env_variables() {
echo "PATH="$PATH:{{addition_to_path}}""
echo "PATH="{{addition_to_path}}""
echo "ESP_IDF_VERSION={{idf_version}}"
for pair in "${env_var_pairs[@]}"; do
key="${pair%%:*}"
Expand Down
2 changes: 1 addition & 1 deletion powershell_scripts/idf_tools_profile_template.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ param(

# Function to print environment variables
function Print-EnvVariables {
"PATH=$env:PATH;{{add_paths_extras}}"
"PATH={{add_paths_extras}}"
"ESP_IDF_VERSION={{idf_version}}"
$env_var_pairs.GetEnumerator() | ForEach-Object {
Write-Host "$($_.Key)=$($_.Value)"
Expand Down

0 comments on commit 4f41849

Please sign in to comment.