Skip to content

Commit

Permalink
fix script path
Browse files Browse the repository at this point in the history
  • Loading branch information
wanwiset25 committed Jan 3, 2024
1 parent a70b3f2 commit af4cc1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/deploy_proxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ echo "$LITE_CSC_LINE"
if [[ $RELAYER_MODE == 'full' ]]; then
echo 'Relayer mode full, updating CHECKPOINT_CONTRACT'
cat /app/generated/common.env | sed -e "s/CHECKPOINT_CONTRACT.*/CHECKPOINT_CONTRACT=$FULL_CSC/" > temp.env
mv temp.env /app/generated/common.env
mv temp.env config/common.env
fi
if [[ $RELAYER_MODE == 'lite' ]]; then
echo 'Relayer mode lite, updating CHECKPOINT_CONTRACT'
cat /app/generated/common.env | sed -e "s/CHECKPOINT_CONTRACT.*/CHECKPOINT_CONTRACT=$LITE_CSC/" > temp.env
mv temp.env /app/generated/common.env
mv temp.env config/common.env
fi

0 comments on commit af4cc1e

Please sign in to comment.