Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit a9dc190

Browse files
authored
Merge pull request #168 from exfinen/update-b
wip
2 parents edfdcf0 + 1f74b9c commit a9dc190

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup_env.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ else
117117
OUT_REDIR=">/dev/null 2>&1"
118118
fi
119119

120-
ALL_SERVERS="All servers"
120+
all_servers="All servers"
121121

122122
if [ -z "$install_target" ]; then
123123
install_mpspdz=true
124124
install_prover=true
125125
install_verifier=true
126126
install_notary=true
127-
install_target=ALL_SERVERS
127+
install_target=$all_servers
128128
fi
129129

130130
if [ "$install_prover" = true ] || [ "$install_verifier" = true ] || [ "$install_notary" = true ]; then
@@ -273,7 +273,8 @@ if [ "$install_rust" = true ]; then
273273
eval "cargo build --release $OUT_REDIR"
274274

275275
# Generate self-signed certificate if all servers configuration
276-
if [ "$install_target" = "$ALL_SERVERS" ]; then
276+
if [ "$install_target" = "$all_servers" ]; then
277+
print "Generating self-signed cert..."
277278
spushd fixture/tls
278279

279280
openssl genpkey -algorithm RSA -out notary.key -pkeyopt rsa_keygen_bits:2048 \

0 commit comments

Comments
 (0)