mirror of
https://github.com/status-im/status-app.git
synced 2026-08-27 15:11:20 +00:00
Fixes this bug where App's version shows "-nwaku-experimental" even when `USE_NWAKU` is not set to `true` Fixes the name of the built binary to contain "experimental" modify version script to force fetch tags and then describe.
6 lines
104 B
Bash
Executable File
6 lines
104 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
git fetch origin --tags --force --no-recurse-submodules
|
|
git describe --tags
|
|
|