Skip to content

Commit f47c0f8

Browse files
authored
Merge pull request #3 from inab/2-version-v103-crashes
fix: version file path
2 parents d8cc189 + bb95ab7 commit f47c0f8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.3
1+
1.0.4

src/swaggerDefinition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const fs = require('fs');
22
const swaggerJsdoc = require('swagger-jsdoc');
33

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

77
const options = {
88
swaggerDefinition: {

0 commit comments

Comments
 (0)