mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-10 21:11:21 +00:00
28 lines
509 B
Bash
Executable File
28 lines
509 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case "$(uname -s)" in
|
|
|
|
Darwin)
|
|
echo 'Mac OS X'
|
|
python3 -m pip install -r requirements.txt
|
|
python3 setup.py install
|
|
python3 ./eth2deposit/deposit.py "$@"
|
|
;;
|
|
|
|
Linux)
|
|
echo 'Linux'
|
|
python3 -m pip install -r requirements.txt
|
|
python3 setup.py install
|
|
python3 ./eth2deposit/deposit.py "$@"
|
|
;;
|
|
|
|
CYGWIN*|MINGW32*|MSYS*|MINGW*)
|
|
echo 'MS Windows'
|
|
;;
|
|
|
|
*)
|
|
echo 'Other OS'
|
|
;;
|
|
|
|
esac
|