File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8475,11 +8475,11 @@ const fs = __nccwpck_require__(7147)
84758475try {
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 });
You can’t perform that action at this time.
0 commit comments