Skip to content

Commit 0acc079

Browse files
heptauclaude
andcommitted
fix(build): fix spec file paths and Windows CRLF in VERSION
- OmniDB-lin.spec was nested in OmniDB/OmniDB/ instead of OmniDB/ - omnidb-win.spec had wrong casing (OmniDB-win.spec expected by Makefile) - VERSION read with tr -d '\n' left \r on Windows CRLF checkouts, breaking sed commands; changed to tr -d '\r\n' Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f592a12 commit 0acc079

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ APP_NAME = OmniDB
66
SERVER_DIR = OmniDB
77
BUNDLE_ID = net.omnidb
88
APP_DISPLAY_NAME = OmniDB
9-
NWJS_VERSION = v0.111.1
10-
VERSION := $(shell cat VERSION | tr -d '\n')
9+
NWJS_VERSION = v0.112.0
10+
VERSION := $(shell cat VERSION | tr -d '\r\n')
1111

1212
# --- Platform Defaults (can be overridden by targets) ---
1313
NWJS_ARCH = osx-arm64

0 commit comments

Comments
 (0)