Skip to content

Commit

Permalink
ci: correct script path
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed Aug 17, 2023
1 parent c02b55e commit befbf74
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/scripts/start_relay.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ ARCHWAY_CONTAINER='archway-node-1'

cd $SUBMODULE_DIR

echo $PWD

# Correct path
search_strings=(
"export IBC_RELAY="
Expand All @@ -19,11 +21,11 @@ search_strings=(

replacement="\$GITHUB_WORKSPACE\/.github\/scripts"
for search_string in "${search_strings[@]}"; do
sed -i "/$search_string/ s/\$HOME/$replacement/g" ./icon-ibc/consts.sh
sed -i "/$search_string/ s/\$HOME/$replacement/g" ../icon-ibc/consts.sh
done


cat ./icon-ibc/consts.sh
cat ../icon-ibc/consts.sh
# Import fd account
pass init $GPG_FINGERPRINT

Expand Down

0 comments on commit befbf74

Please sign in to comment.