Skip to content

Commit b09578c

Browse files
maybe shell?
1 parent 539eb41 commit b09578c

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

dist/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28333,10 +28333,8 @@ function main() {
2833328333
yield (0, promises_1.symlink)(tool, symlinkPath);
2833428334
core.info(`Adding to path: ${symlinkPath}`);
2833528335
core.addPath(symlinkPath);
28336-
const withOgName = yield determineInstalledVersion(tool);
28337-
core.info(`Can determine with og name: ${withOgName}`);
28338-
const installedVersion = yield determineInstalledVersion('pglt');
28339-
core.setOutput('installed-version', installedVersion);
28336+
// const installedVersion = await determineInstalledVersion('pglt')
28337+
// core.setOutput('installed-version', installedVersion)
2834028338
}
2834128339
catch (err) {
2834228340
if (err instanceof Error) {

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,8 @@ async function main() {
110110
core.info(`Adding to path: ${symlinkPath}`)
111111
core.addPath(symlinkPath)
112112

113-
const withOgName = await determineInstalledVersion(tool)
114-
core.info(`Can determine with og name: ${withOgName}`)
115-
116-
const installedVersion = await determineInstalledVersion('pglt')
117-
core.setOutput('installed-version', installedVersion)
113+
// const installedVersion = await determineInstalledVersion('pglt')
114+
// core.setOutput('installed-version', installedVersion)
118115
} catch (err) {
119116
if (err instanceof Error) {
120117
core.setFailed(err.message)

0 commit comments

Comments
 (0)