8000 dev4 · akv-platform/setup-python@82f7c74 · GitHub
[go: up one dir, main page]

Skip to content

Commit 82f7c74

Browse files
committed
dev4
1 parent ce37fe7 commit 82f7c74

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/setup/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64440,7 +64440,7 @@ exports.MANIFEST_URL = `https://raw.githubusercontent.com/${MANIFEST_REPO_OWNER}
6444064440
function findReleaseFromManifest(semanticVersionSpec, architecture) {
6444164441
return __awaiter(this, void 0, void 0, function* () {
6444264442
const manifest = yield tc.getManifestFromRepo(MANIFEST_REPO_OWNER, MANIFEST_REPO_NAME, AUTH, MANIFEST_REPO_BRANCH);
64443-
core.debug(`semanticVersionSpec=${semanticVersionSpec} manifest=${manifest} architecture=${architecture}`);
64443+
core.debug(`semanticVersionSpec=${semanticVersionSpec} manifest=${JSON.stringify(manifest)} architecture=${architecture}`);
6444464444
return yield tc.findFromManifest(semanticVersionSpec, false, manifest, architecture);
6444564445
});
6444664446
}

src/install-python.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export async function findReleaseFromManifest(
2222
AUTH,
2323
MANIFEST_REPO_BRANCH
2424
);
25-
core.debug(`semanticVersionSpec=${semanticVersionSpec} manifest=${manifest} architecture=${architecture}`)
25+
core.debug(`semanticVersionSpec=${semanticVersionSpec} manifest=${JSON.stringify(manifest)} architecture=${architecture}`)
2626
return await tc.findFromManifest(
2727
semanticVersionSpec,
2828
false,

0 commit comments

Comments
 (0)
0