Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Making sure the autoupdate miner does nothing since there is nothing …
Browse files Browse the repository at this point in the history
…to do
  • Loading branch information
namoray committed Feb 20, 2024
1 parent 759260a commit bd826e4
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions autoupdate_miner_steps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,24 @@
# THIS FILE CONTAINS THE STEPS NEEDED TO AUTOMATICALLY UPDATE THE REPO ON A TAG CHANGE
# THIS FILE ITSELF MAY CHANGE FROM UPDATE TO UPDATE, SO WE CAN DYNAMICALLY FIX ANY ISSUES

./get_models.sh

echo "Nothing to do for this update!"

if command -v pip &> /dev/null
then
### Install the local python environment using pip
pip install --upgrade pip
pip install -e .
pip install -r git_requirements.txt
else
### Install the local python environment using pip3
pip3 install --upgrade pip
pip3 install -e .
pip3 install -r git_requirements.txt
fi
# ./get_models.sh


./start_miners.sh
# if command -v pip &> /dev/null
# then
# ### Install the local python environment using pip
# pip install --upgrade pip
# pip install -e .
# pip install -r git_requirements.txt
# else
# ### Install the local python environment using pip3
# pip3 install --upgrade pip
# pip3 install -e .
# pip3 install -r git_requirements.txt
# fi


# ./start_miners.sh

0 comments on commit bd826e4

Please sign in to comment.