Skip to content

Commit

Permalink
fix(action): Fixed buffer -> string transformation
Browse files Browse the repository at this point in the history
  • Loading branch information
kamil-mrzyglod committed Dec 2, 2023
1 parent f946e02 commit 09e2ed5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30836,7 +30836,7 @@ try {
throw new Error('Please provide a valid input.');
}

const result = execSync(command.toString());
const result = execSync(command).toString();
console.log(result);
} catch (error) {
core.setFailed(error.message);
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ try {
throw new Error('Please provide a valid input.');
}

const result = execSync(command.toString());
const result = execSync(command).toString();
console.log(result);
} catch (error) {
core.setFailed(error.message);
Expand Down

0 comments on commit 09e2ed5

Please sign in to comment.