mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
11 lines
219 B
Bash
11 lines
219 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if hash kvtool 2>/dev/null; then
|
||
|
echo "[install-kvtool.sh] kvtool is already installed. skipping installation."
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
echo "[install-kvtool.sh] installing kvtool."
|
||
|
cd kvtool || exit 1
|
||
|
make install
|