Skip to content

Commit

Permalink
consume v3.8.4 libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
lukka committed Jun 16, 2023
1 parent 0be4545 commit bca810c
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 69 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5505,8 +5505,8 @@ function injectEnvVariables(baseUtils, vcpkgRoot, args) {
let newValue;
if (baseUtils.isVariableStrippingPath(key))
continue;
// Skip VCPKG_ROOT if already defined.
if (key === vcpkgRoot && vcpkgRoot in process.env)
// Skip VCPKG_ROOT.
if (key.toUpperCase() === runvcpkglib.VCPKGROOT)
continue;
if (key.toUpperCase() === "PATH") {
newValue = process.env[key] + path.delimiter + map[key];
Expand Down
124 changes: 62 additions & 62 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
"@actions/exec": "^1.0.3",
"@actions/github": "^4.0.0",
"@actions/io": "^1.0.2",
"@lukka/action-lib": "3.8.3",
"@lukka/assets-lib": "3.8.3",
"@lukka/base-lib": "3.8.3",
"@lukka/base-util-lib": "3.8.3",
"@lukka/run-cmake-lib": "3.8.3",
"@lukka/action-lib": "3.8.4",
"@lukka/assets-lib": "3.8.4",
"@lukka/base-lib": "3.8.4",
"@lukka/base-util-lib": "3.8.4",
"@lukka/run-cmake-lib": "3.8.4",
"@types/adm-zip": "^0.4.32",
"@types/follow-redirects": "^1.8.0",
"@types/jest": "^26.0.14",
Expand Down

0 comments on commit bca810c

Please sign in to comment.