fix(release): var not defined
This commit is contained in:
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,10 +1,9 @@
|
||||
# Changelog
|
||||
## <small>0.0.2-alpha.9 (2025-07-12)</small>
|
||||
|
||||
## [0.0.2-alpha.10](https://git.tuffraid.net/cowch/logistics_support_tool/compare/v0.0.2-alpha.9...v0.0.2-alpha.10) (2025-07-12)
|
||||
* chore(release): v0.0.2-alpha.9 ([3203f54](https://git.tuffraid.net/cowch/logistics_support_tool/commits/3203f54))
|
||||
* fix(release): checking the build file failes but not sure why ([f429bd4](https://git.tuffraid.net/cowch/logistics_support_tool/commits/f429bd4))
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **release:** error in function ([dc4beb2](https://git.tuffraid.net/cowch/logistics_support_tool/commit/dc4beb2d2768c8e5f5f3f629b13bb38373c2a0a2))
|
||||
|
||||
## <small>0.0.2-alpha.8 (2025-07-12)</small>
|
||||
|
||||
@@ -110,3 +109,6 @@
|
||||
* feat(starter): intial starter release ([b370cb1](https://git.tuffraid.net/cowch/logistics_support_tool/commits/b370cb1))
|
||||
* Initial commit ([e4d3fc9](https://git.tuffraid.net/cowch/logistics_support_tool/commits/e4d3fc9))
|
||||
* Update README.md ([e081c8f](https://git.tuffraid.net/cowch/logistics_support_tool/commits/e081c8f))
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ const buildNumberPath = path.resolve(__dirname, "../BUILD_NUMBER");
|
||||
// Load build number from BUILD_NUMBER file
|
||||
let buildNumber = "0";
|
||||
try {
|
||||
rawBuild = fs.readFileSync(buildNumberPath, "utf8");
|
||||
const rawBuild = fs.readFileSync(buildNumberPath, "utf8");
|
||||
console.log("Raw build", rawBuild);
|
||||
if (rawBuild) {
|
||||
// const [numPart, namePart] = rawBuild.split("-");
|
||||
|
||||
Reference in New Issue
Block a user