Skip to content

Commit 10416be

Browse files
committed
Generalizing failed message
1 parent 3ab47b0 commit 10416be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ async function run() {
6767
const tempFile = Buffer.from(encodedString, 'base64');
6868

6969
if (tempFile.length == 0)
70-
core.setFailed('Certificate value is not set');
70+
core.setFailed('Temporary file value is not set');
7171

7272
fs.writeFile(fileName, tempFile, (err) => {
7373
if (err) throw err;

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ async function run() {
1212
const tempFile = Buffer.from(encodedString, 'base64');
1313

1414
if (tempFile.length == 0)
15-
core.setFailed('Certificate value is not set');
15+
core.setFailed('Temporary file value is not set');
1616

1717
fs.writeFile(fileName, tempFile, (err) => {
1818
if (err) throw err;

0 commit comments

Comments
 (0)