Skip to content

Commit

Permalink
use Eclipse without root folder
Browse files Browse the repository at this point in the history
  • Loading branch information
georgik committed Sep 24, 2021
1 parent c9e9001 commit 6b584a0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Build-Installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ function PrepareIdfPythonWheels {
}

function PrepareIdfEclipse {
PrepareIdfPackage -BasePath build\$InstallerType\tools\idf-eclipse\2021-06-R-win-iep220 `
-FilePath eclipse\eclipse.exe `
-DistZip idf-eclipse-2021-06-R-win-iep220.zip `
-DownloadUrl https://s3.cn-north-1.amazonaws.com.cn/espdldata/dl/idf-eclipse/eclipse-cpp-2021-06-R-win-iep220.zip
PrepareIdfPackage -BasePath build\$InstallerType\tools\idf-eclipse\2021-09 `
-FilePath eclipse.exe `
-DistZip idf-eclipse-2021-09-win64.zip `
-DownloadUrl https://dl.espressif.com/dl/idf-eclipse/idf-eclipse-2021-09-win64.zip
}

function PrepareIdfDriver {
Expand Down
2 changes: 1 addition & 1 deletion src/InnoSetup/Eclipse.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
function GetEclipsePath(FileName:String): String;
begin
Result := ExpandConstant('{app}\tools\idf-eclipse\{#ECLIPSE_VERSION}\eclipse\') + FileName;
Result := ExpandConstant('{app}\tools\idf-eclipse\{#ECLIPSE_VERSION}\') + FileName;
end;
function GetEclipseExePath():String;
Expand Down
6 changes: 3 additions & 3 deletions src/InnoSetup/IdfToolsSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
#define GitInstallerName "idf-git-" + GITVERSION + "-win64.zip"
#define GitInstallerDownloadURL "https://dl.espressif.com/dl/idf-git/" + GitInstallerName

#define ECLIPSE_VERSION "2021-06-R-win-iep220"
#define ECLIPSE_INSTALLER "eclipse-cpp-" + ECLIPSE_VERSION + ".zip"
#define ECLIPSE_DOWNLOADURL "https://s3.cn-north-1.amazonaws.com.cn/espdldata/dl/idf-eclipse/" + ECLIPSE_INSTALLER
#define ECLIPSE_VERSION "2021-09"
#define ECLIPSE_INSTALLER "idf-eclipse-" + ECLIPSE_VERSION + "-win64.zip"
#define ECLIPSE_DOWNLOADURL "https://dl.espressif.com/dl/idf-eclipse/" + ECLIPSE_INSTALLER

#define IDFVersionsURL "https://dl.espressif.com/dl/esp-idf/idf_versions.txt"

Expand Down

0 comments on commit 6b584a0

Please sign in to comment.