Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SpontaneousOverthrow committed Nov 22, 2023
1 parent e8f6365 commit 78b0ebe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/func-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ jobs:
echo -e "Generating Input Grep Command: ${green}OK${nc}"
echo -e "Updating Paths And Grep Command If Wallet Is Distributed"
if $(echo "${input_path}" | grep "distributed"); then
input_path="${input_path}/test1"
if [[ echo "${input_path}" | grep "distributed" ]]; then
input_path="$input_path/test1"
input_grep="Composite public key:"
fi
if $(echo "${output_path}" | grep "distributed"); then
output_path="${output_path}/test1"
if [[ echo "${output_path}" | grep "distributed" ]]; then
output_path="$output_path/test1"
ouput_grep="Composite public key:"
fi
echo -e "Updating Paths And Grep Command If Wallet Is Distributed: ${green}OK${nc}"
echo -e "${green}Input Path | Input Grep:${nc} [$input_path] [$input_grep]"
echo -e "${green}Output Path | Input Grep:${nc}" [$output_path] [$output_grep]"
echo -e "${green}Output Path | Input Grep:${nc} [$output_path] [$output_grep]"
echo -e "Getting Wallets"
wallets_list=$(ethdo wallet list --base-dir "$input_path" | tr '\n' ' ')
Expand Down

0 comments on commit 78b0ebe

Please sign in to comment.