Skip to content

Commit

Permalink
fix: project file content not loaded accurately
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed May 25, 2022
1 parent 4b37504 commit b294172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bumper.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = async (
await setGitConfigs();
pathToDocument = path.join(workspace, pathToDocument);
logInfo(`Path to document: ${pathToDocument}`);
const projectFile = getProjectContent(pathToDocument);
const projectFile = getProjectContent(pathToDocument).toString();
logInfo(`projectFile: ${projectFile}`);
let currentVersion;
if (type === 'csproj') {
Expand Down

0 comments on commit b294172

Please sign in to comment.