Skip to content

Commit

Permalink
Merge pull request #202 from espressif/IEP-1054
Browse files Browse the repository at this point in the history
IEP-1054: Offline installer missing quotes
  • Loading branch information
alirana01 authored Oct 19, 2023
2 parents b718a8d + 9251fe3 commit 5ee359c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InnoSetup/Configuration.iss
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ begin
Content := Content + ' "' + IdfId + '": {' + #13#10;
Content := Content + ' "version": "' + IdfVersion + '",' + #13#10;
Content := Content + ' "path": "' + IdfPathWithForwardSlashes + '",' + #13#10;
Content := Content + ' "python": "' + GetPathWithForwardSlashes(GetPythonVirtualEnvExecutable()) + #13#10;
Content := Content + ' "python": "' + GetPathWithForwardSlashes(GetPythonVirtualEnvExecutable()) + '"' + #13#10;
Content := Content + ' }' + #13#10;
Content := Content + ' }' + #13#10;
Content := Content + '}' + #13#10;
Expand Down

0 comments on commit 5ee359c

Please sign in to comment.