We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Version string isn't generated correctly. 86ae0fe is affected.
$ xmap -V xmap Development Build. Commit UNKNOWN
To Reproduce
xmap -V
Expected behavior
Commit hash should not be "UNKNOWN".
Desktop
Additional context
Problem may be in src/CMakeVersion.txt
src/CMakeVersion.txt
aur/xmap-git has been adjusted to produce output like following:
aur/xmap-git
$ xmap -V xmap AUR 2.0.2.r0.g86ae0fe
The text was updated successfully, but these errors were encountered:
good for me on Ubuntu 22.04:
$ git clone https://github.com/idealeer/xmap.git $ cd xmap $ cmake . $ make -j4 $ make install $ xmap -V xmap Development Build. Commit 86ae0fe - Fri Aug 16 15:16:29 2024 +0800
please try again.
Sorry, something went wrong.
I think the problem is that I run out-of-tree builds.
$ cmake -S xmap -B build -G Ninja $ cmake --build build $ build/src/xmap -V xmap Development Build. Commit UNKNOWN
A workaround is to use:
GIT_DIR="$PWD/xmap" cmake --build build
As far as the AUR package is concerned, it has been revised to match the package (xmap AUR 2.0.2.r0.g86ae0fe).
xmap AUR 2.0.2.r0.g86ae0fe
On another topic, the GitHub Wiki mentioned in the readme isn't active.
No branches or pull requests
Describe the bug
Version string isn't generated correctly. 86ae0fe is affected.
To Reproduce
xmap -V
Expected behavior
Commit hash should not be "UNKNOWN".
Desktop
Additional context
Problem may be in
src/CMakeVersion.txt
aur/xmap-git
has been adjusted to produce output like following:The text was updated successfully, but these errors were encountered: