make input error more descriptive
This commit is contained in:
parent
64eeb40ad3
commit
291f322050
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -19,7 +19,7 @@ async function run() {
|
|||
const tempFile = Buffer.from(encodedString, 'base64');
|
||||
|
||||
if (tempFile.length == 0)
|
||||
core.setFailed('Temporary file value is not set');
|
||||
core.setFailed('encodedString value is not set');
|
||||
|
||||
fse.outputFile(fileName, tempFile, (err) => {
|
||||
if (err) throw err;
|
||||
|
|
Loading…
Add table
Reference in a new issue