Skip to content

Commit

Permalink
added debug lines stCarolas#2
Browse files Browse the repository at this point in the history
  • Loading branch information
Srinivas Bommadevara committed Jul 1, 2021
1 parent a3d6df5 commit 5cb4a7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
let version = core.getInput('tekton-version');
core.debug(`VERSION = '${version}'`);
if (version) {
yield installer.getTekton(version);
}
Expand Down
1 change: 1 addition & 0 deletions lib/setup-maven.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function run() {
return __awaiter(this, void 0, void 0, function* () {
try {
let version = core.getInput('tekton-version');
core.debug(`VERSION = '${version}'`);
if (version) {
yield installer.getTekton(version);
}
Expand Down
1 change: 1 addition & 0 deletions src/setup-maven.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as installer from './installer';
async function run() {
try {
let version = core.getInput('tekton-version');
core.debug(`VERSION = '${version}'`)
if (version) {
await installer.getTekton(version);
}
Expand Down

0 comments on commit 5cb4a7f

Please sign in to comment.