Skip to content

Commit

Permalink
fix proxy dir path in ci run.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristure committed Mar 1, 2024
1 parent 18ba89d commit 2185f39
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/docker-testnet/variables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,11 @@ fi
# Proxy configuration

# Path to mx-chain-proxy-go, branch: master. Default: near mx-chain-go.
export PROXYDIR="$(dirname $MULTIVERSXDIR)/mx-chain-proxy-go/cmd/proxy"
if [[ -n $CI_RUN ]]; then
export PROXYDIR="$(dirname $MULTIVERSXDIR)/mx-chain-go/mx-chain-proxy-go/cmd/proxy"
else
export PROXYDIR="$(dirname $MULTIVERSXDIR)/mx-chain-proxy-go/cmd/proxy"
fi
export PROXY=$PROXYDIR/proxy # Leave unchanged.

export PORT_PROXY="7950"
Expand Down

0 comments on commit 2185f39

Please sign in to comment.