Skip to content

Commit e045f89

Browse files
committed
or this
1 parent 3aab7a2 commit e045f89

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

install-timelord.sh

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@ elif [ "$(uname)" = "Darwin" ]; then
8989
echo "Found MacOS."
9090
fi
9191

92-
CHIAVDF_VERSION=
93-
9492
if [ -e "$THE_PATH" ]; then
9593
echo "$THE_PATH"
9694
echo "vdf_client already exists, no action taken"
@@ -101,17 +99,17 @@ else
10199
echo "apt-get install libgmp-dev libboost-python-dev $PYTHON_DEV_DEPENDENCY libboost-system-dev build-essential -y"
102100
sudo apt-get install libgmp-dev libboost-python-dev "$PYTHON_DEV_DEPENDENCY" libboost-system-dev build-essential -y
103101
echo "Installing chiavdf from source on Ubuntu/Debian"
104-
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
105-
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
102+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
103+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
106104
symlink_vdf_bench "$PYTHON_VERSION"
107105
elif [ -e venv/bin/python ] && test "$RHEL_BASED"; then
108106
echo "Installing chiavdf dependencies on RedHat/CentOS/Fedora"
109107
# Install remaining needed development tools - assumes venv and prior run of install.sh
110108
echo "$yumcmd"
111109
${yumcmd}
112110
echo "Installing chiavdf from source on RedHat/CentOS/Fedora"
113-
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
114-
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
111+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
112+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
115113
symlink_vdf_bench "$PYTHON_VERSION"
116114
elif [ -e venv/bin/python ] && test "$MACOS"; then
117115
echo "Installing chiavdf dependencies for MacOS."
@@ -126,14 +124,14 @@ else
126124
export CPPFLAGS="-I/usr/local/opt/[email protected]/include"
127125
echo "Installing chiavdf from source."
128126
# User needs to provide required packages
129-
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
130-
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
127+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
128+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
131129
symlink_vdf_bench "$PYTHON_VERSION"
132130
elif [ -e venv/bin/python ]; then
133131
echo "Installing chiavdf from source."
134132
# User needs to provide required packages
135-
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
136-
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections' "$CHIAVDF_VERSION"
133+
echo venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
134+
venv/bin/python -m pip install --force --no-binary 'git+https://github.com/chia-network/chiavdf@update_macos_runner_selections'
137135
symlink_vdf_bench "$PYTHON_VERSION"
138136
else
139137
echo "No venv created yet, please run install.sh."

0 commit comments

Comments
 (0)