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
Hello!
I recently built current version from src with following commands:
export SOFT="~/soft" mkdir -p "$SOFT" export INTEROP_VERSION="1.3.2" cd "$SOFT" \ && wget -q "https://github.com/Illumina/interop/archive/refs/tags/v${INTEROP_VERSION}.tar.gz" -O "$SOFT/interop-${INTEROP_VERSION}.tar.gz" \ && tar -xzf "$SOFT/interop-${INTEROP_VERSION}.tar.gz" \ && mv "$SOFT/interop-${INTEROP_VERSION}" "$SOFT/interop-${INTEROP_VERSION}_src" \ && mkdir -p "$SOFT/interop-${INTEROP_VERSION}_src/build" \ && cd "$SOFT/interop-${INTEROP_VERSION}_src/build" \ && cmake .. -DCMAKE_INSTALL_PREFIX="$SOFT/interop-${INTEROP_VERSION}" \ && cmake --build . -j"$(($(nproc)+1))" \ && cmake --build . --target install
Now when I run:
bio@bisa10:~$ summary # Version: v3.0.35-src bio@bisa10:~$ which summary /home/bio/soft/interop-1.3.2/bin/summary
So why do I get v3.0.35-src instead of 1.3.2?
v3.0.35-src
1.3.2
The text was updated successfully, but these errors were encountered:
We use git to determine the version. When git fails, we provide a fallback version v3.0.35-src.
git
So, either you
We chose this mechanism because it:
Sorry, something went wrong.
No branches or pull requests
Hello!
I recently built current version from src with following commands:
Now when I run:
So why do I get
v3.0.35-src
instead of1.3.2
?The text was updated successfully, but these errors were encountered: