mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
6 lines
204 B
Bash
6 lines
204 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Bats helper script for parsing current version from Version.java.
|
||
|
|
||
|
export CURRENT_VERSION=$(grep "String VERSION =" common/src/main/java/bisq/common/app/Version.java | sed 's/[^0-9.]*//g')
|