Skip to content

Commit 6e4a128

Browse files
:|
1 parent b0d35d1 commit 6e4a128

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8475,11 +8475,11 @@ const fs = __nccwpck_require__(7147)
84758475
try {
84768476
// get the input values
84778477
const filePath = core.getInput('filepath');
8478-
console.log(filepath);
8478+
console.log(filePath);
84798479
const versionNumber = core.getInput('versionnumber');
84808480
console.log(versionNumber);
84818481

8482-
fs.readFile(filepath, 'utf8', function (err,data) {
8482+
fs.readFile(filePath, 'utf8', function (err,data) {
84838483
if (err) {
84848484
return console.log(err);
84858485
}
@@ -8488,7 +8488,7 @@ try {
84888488
var result = data.replace('<ApplicationVersion>1</ApplicationVersion>', replacementString);
84898489

84908490
console.log(result);
8491-
fs.writeFile(filepath, result, 'utf8', function (err) {
8491+
fs.writeFile(filePath, result, 'utf8', function (err) {
84928492
if (err) return console.log(err);
84938493
});
84948494
});

0 commit comments

Comments
 (0)