-
Notifications
You must be signed in to change notification settings - Fork 47
/
verifier-cli-install.sh
executable file
·164 lines (134 loc) · 4.48 KB
/
verifier-cli-install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/bin/bash
#
# Solana Verifiable Build CLI binary installation script
#
# The purpose of this script is to automate the download and installation
# of Solana Verifiable Build CLI binary.
#
# Currently the supported platforms are macOS, Linux
#
RED() { echo $'\e[1;31m'$1$'\e[0m'; }
GRN() { echo $'\e[1;32m'$1$'\e[0m'; }
CYN() { echo $'\e[1;36m'$1$'\e[0m'; }
abort_on_error() {
if [ ! $1 -eq 0 ]; then
RED "Aborting: operation failed"
exit 1
fi
}
CYN "Solana Verify CLI installation script"
echo "---------------------------------------"
echo ""
OS_FLAVOUR="$(uname -s)"
PROCESSOR="$(uname -m)"
case "$PROCESSOR" in
arm* | aarch* | ppc* )
if [ "$OS_FLAVOUR" != Darwin ]; then
echo "Binary for $PROCESSOR architecture is not currently supported using this installer."
exit 1
fi
;;
*)
# good to go
;;
esac
BIN="solana-verify"
SUFFIX="linux"
if [ "$OS_FLAVOUR" = Darwin ]; then
SUFFIX="macos"
fi
if ["$OS_FLAVOUR" = Windows ]; then
echo "Windows is not currently supported using this installer."
exit 1
fi
DIST="$BIN-$SUFFIX"
# creates a temporary directory to save the distribution file
SOURCE="$(mktemp -d)"
echo "$(CYN "1.") 🖥 $(CYN "Downloading distribution")"
echo ""
# downloads the distribution file
REMOTE="https://github.com/Ellipsis-Labs/solana-verifiable-build/releases/latest/download/"
echo " => downloading from: $(CYN $REMOTE$DIST)"
curl -L $REMOTE$DIST --output "$SOURCE/$DIST"
abort_on_error $?
SIZE=$(wc -c "$SOURCE/$DIST" | grep -oE "[0-9]+" | head -n 1)
if [ $SIZE -eq 0 ]; then
RED "Aborting: could not download distribution"
exit 1
fi
# makes sure the binary will be executable
chmod u+x "$SOURCE/$DIST"
abort_on_error $?
echo ""
echo "$(CYN "2.") 📤 $(CYN "Moving binary into place")"
echo ""
if [ ! "$(command -v $BIN)" = "" ]; then
# binary already found on system, ask if we should
# replace it
EXISTING="$(which $BIN)"
echo "Binary was found at:"
echo " => $(CYN $EXISTING)"
echo ""
echo -n "$(CYN "Replace it? [y/n]") (default 'n'): "
read REPLACE
if [ "$REPLACE" = y ]; then
echo ""
echo "'$BIN' binary will be moved to '$(dirname "$EXISTING")'."
mv "$SOURCE/$DIST" "$EXISTING"
abort_on_error $?
else
# nothing else to do, replacement was cancelled
RED "Aborting: replacement cancelled"
exit 1
fi
else
# determines a suitable directory for the binary - preference:
# 1) ~/.cargo/bin if exists
# 2) ~/bin otherwise
TARGET="$HOME/.cargo/bin"
if [ ! -d "$TARGET" ]; then
TARGET="$HOME/bin"
if [ ! -d "$TARGET" ]; then
mkdir $TARGET
fi
fi
echo "'$BIN' binary will be moved to '$TARGET'."
mv "$SOURCE/$DIST" "$TARGET/$BIN"
abort_on_error $?
if [ "$(command -v $BIN)" = "" ]; then
ENV_FILE="$HOME/.$(basename $SHELL)rc"
if [ -f "$ENV_FILE" ]; then
echo " => adding '$TARGET' to 'PATH' variable in '$ENV_FILE'"
echo "export PATH=\"$HOME/bin:\$PATH\"" >> "$ENV_FILE"
else
echo " => adding '$TARGET' to 'PATH' variable to execute 'solana-verify' from any directory."
echo " - file '$(CYN $ENV_FILE)' was not found"
echo ""
echo -n "$(CYN "Would you like to create '$ENV_FILE'? [y/n]") (default 'n'): "
read CREATE
if [ "$CREATE" = y ]; then
echo " => adding '$TARGET' to 'PATH' variable in '$ENV_FILE'"
echo "export PATH=\"$HOME/bin:\$PATH\"" >> "$ENV_FILE"
else
echo ""
echo " $(RED "[File creation cancelled]")"
echo ""
echo " - to manually add '$TARGET' to 'PATH' you will need to:"
echo ""
echo " 1. create a file named '$(basename $ENV_FILE)' in your directory '$(dirname $ENV_FILE)'"
echo " 2. add the following line to the file:"
echo ""
echo " export PATH=\"$HOME/bin:\$PATH\""
fi
fi
fi
fi
echo ""
# sanity check
if [ "$(command -v $BIN)" = "" ]; then
# installation was completed, but phoenix-cli is not in the PATH
echo "✅ $(GRN "Installation complete:") restart your shell to update 'PATH' variable or type '$TARGET/$BIN' to start using it."
else
# success
echo "✅ $(GRN "Installation successful:") type '$BIN' to start using it."
fi