Skip to content

Commit

Permalink
fix: version file path
Browse files Browse the repository at this point in the history
  • Loading branch information
EvaMart committed Oct 31, 2024
1 parent d8cc189 commit bb95ab7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.3
1.0.4
2 changes: 1 addition & 1 deletion src/swaggerDefinition.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const fs = require('fs');
const swaggerJsdoc = require('swagger-jsdoc');

// Read version from the VERSION file in the parent directory
const version = fs.readFileSync('../VERSION', 'utf8').trim();
const version = fs.readFileSync('VERSION', 'utf8').trim();

const options = {
swaggerDefinition: {
Expand Down

0 comments on commit bb95ab7

Please sign in to comment.