From 3416cb311547c71462f5e4602c4207190a498a84 Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Quiros Date: Tue, 30 Jan 2024 12:09:59 +0100 Subject: [PATCH] Move to eth-specs for building --- install-eth-specs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-eth-specs.sh b/install-eth-specs.sh index 1f16fb3..fd9c479 100755 --- a/install-eth-specs.sh +++ b/install-eth-specs.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash - -pip install -r ./eth-specs/requirements_preinstallation.txt -python ./eth-specs/setup.py sdist bdist_wheel -pip install ./eth-specs/dist/*.whl \ No newline at end of file +cd ./eth-specs +pip install -r requirements_preinstallation.txt +python setup.py sdist bdist_wheel +pip install dist/*.whl \ No newline at end of file