Skip to content

Commit ca9e30b

Browse files
committed
Modifying version and error message
1 parent f50b750 commit ca9e30b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ node_modules/
22

33
# Editors
44
.vscode
5+
.vs/
56

67
# Logs
78
logs

dist/index.js

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

638638
if (tempFile.length == 0)
639-
core.setFailed('Temporary file value is not set');
639+
core.setFailed('encodedString value is not set');
640640

641641
fse.outputFile(fileName, tempFile, (err) => {
642642
if (err) throw err;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "base64-to-file",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "base64 encoded string to a file",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)