Fix whirlpool variable name causing frequent reinstall

This commit is contained in:
Taylor Helsper 2020-09-02 21:26:02 -05:00
parent 52ab9f6b57
commit c4eb47d2c4
2 changed files with 2 additions and 2 deletions

View File

@ -423,7 +423,7 @@ CURRENT=""
if [ -f $WHIRLPOOL_VERSION_FILE ]; then if [ -f $WHIRLPOOL_VERSION_FILE ]; then
CURRENT=$(cat $WHIRLPOOL_VERSION_FILE) CURRENT=$(cat $WHIRLPOOL_VERSION_FILE)
fi fi
if [ "$CURRENT" != "$WHIRLPOOL_UPGRADE_URL" ]; then if [ "$CURRENT" != "$WHIRLPOOL_VERSION" ]; then
sudo -u bitcoin mkdir -p /opt/mynode/whirlpool sudo -u bitcoin mkdir -p /opt/mynode/whirlpool
cd /opt/mynode/whirlpool cd /opt/mynode/whirlpool
sudo rm -rf *.jar sudo rm -rf *.jar

View File

@ -516,7 +516,7 @@ CURRENT=""
if [ -f $WHIRLPOOL_VERSION_FILE ]; then if [ -f $WHIRLPOOL_VERSION_FILE ]; then
CURRENT=$(cat $WHIRLPOOL_VERSION_FILE) CURRENT=$(cat $WHIRLPOOL_VERSION_FILE)
fi fi
if [ "$CURRENT" != "$WHIRLPOOL_UPGRADE_URL" ]; then if [ "$CURRENT" != "$WHIRLPOOL_VERSION" ]; then
sudo -u bitcoin mkdir -p /opt/mynode/whirlpool sudo -u bitcoin mkdir -p /opt/mynode/whirlpool
cd /opt/mynode/whirlpool cd /opt/mynode/whirlpool
sudo rm -rf *.jar sudo rm -rf *.jar