mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-24 18:41:21 +02:00
fix(bitcon.update): unary operator expected (#3365)
* fix(bitcon.update): unary operator expected * Update home.admin/config.scripts/bitcoin.update.sh Co-authored-by: openoms <43343391+openoms@users.noreply.github.com>
This commit is contained in:
@@ -137,7 +137,7 @@ if [ "${mode}" = "tested" ]||[ "${mode}" = "reckless" ]||[ "${mode}" = "custom"
|
||||
|
||||
displayInfo
|
||||
|
||||
if [ $installedVersion = $bitcoinVersion ];then
|
||||
if [ "$installedVersion" = "$bitcoinVersion" ]; then
|
||||
echo "# installedVersion = bitcoinVersion"
|
||||
echo "# exiting script"
|
||||
exit 0
|
||||
|
Reference in New Issue
Block a user