Skip to content

Commit

Permalink
build v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jurplel committed Mar 16, 2020
1 parent 1e69f01 commit 15993dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ function run() {
//set environment variables
let qtPath = dir + "/" + version;
qtPath = glob.sync(qtPath + '/**/*')[0];
core.exportVariable('Qt5_Dir', qtPath);
core.exportVariable('Qt5_Dir', qtPath); // Incorrect name that was fixed, but kept around so it doesn't break anything
core.exportVariable('Qt5_DIR', qtPath);
core.addPath(qtPath + "/bin");
}
catch (error) {
Expand Down

0 comments on commit 15993dc

Please sign in to comment.