Skip to content

Commit 62d4bb8

Browse files
authored
Capitalize filename
1 parent 30854f7 commit 62d4bb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/_TestingInternals/Versions.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ const char *swt_getTestingLibraryVersion(void) {
1818
#if defined(SWT_TESTING_LIBRARY_VERSION)
1919
// The current environment explicitly specifies a version string to return.
2020
return SWT_TESTING_LIBRARY_VERSION;
21-
#elif __has_embed("../../version.txt")
21+
#elif __has_embed("../../VERSION.txt")
2222
static constinit auto version = [] () constexpr {
2323
// Read the version from version.txt at the root of the package's repo.
2424
char version[] = {
2525
#pragma clang diagnostic push
2626
#pragma clang diagnostic ignored "-Wc23-extensions"
27-
#embed "../../version.txt"
27+
#embed "../../VERSION.txt"
2828
#pragma clang diagnostic pop
2929
};
3030

0 commit comments

Comments
 (0)