Skip to content

Commit

Permalink
revert, make CI happy again
Browse files Browse the repository at this point in the history
  • Loading branch information
levackt committed Jul 19, 2022
1 parent bb4aa6d commit a0a446b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deployment/docker/bootstrap/bootstrap_init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ if [ ! -e "$file" ]; then
rm -rf ~/.secretd/*
rm -rf /opt/secret/.sgx_secrets/*

chain_id=${CHAINID:-supernova-1}
if [ -z "${CHAINID}" ]; then
chain_id="supernova-1"
else
chain_id="$CHAINID"
fi

mkdir -p ./.sgx_secrets
secretd config chain-id "$chain_id"
Expand Down

0 comments on commit a0a446b

Please sign in to comment.