Skip to content

Commit

Permalink
fix tmux arg expansion
Browse files Browse the repository at this point in the history
  • Loading branch information
buck54321 committed Oct 4, 2024
1 parent 6334cc8 commit 81b8725
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dex/testing/walletpair/walletpair.sh
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,13 @@ tmux rename-window -t $SESSION:0 'harness-ctl'
if [ -z "${ONLY_TWO}" ]; then
tmux new-window -t $SESSION:1 -n 'bisonw1' $SHELL
tmux send-keys -t $SESSION:1 "cd ${PAIR_ROOT}/dexc1" C-m
tmux send-keys -t $SESSION:1 "${BISONW} --appdata=${CLIENT_1_DIR} ${BW_ARGS[@]}" C-m
tmux send-keys -t $SESSION:1 "${BISONW} --appdata=${CLIENT_1_DIR} ${BW_ARGS[*]}" C-m
fi

if [ -z "${ONLY_ONE}" ]; then
tmux new-window -t $SESSION:2 -n 'bisonw2' $SHELL
tmux send-keys -t $SESSION:2 "cd ${PAIR_ROOT}/dexc1" C-m
tmux send-keys -t $SESSION:2 "${BISONW} --appdata=${CLIENT_2_DIR} ${BW_ARGS[@]}" C-m
tmux send-keys -t $SESSION:2 "${BISONW} --appdata=${CLIENT_2_DIR} ${BW_ARGS[*]}" C-m
fi

tmux select-window -t $SESSION:0
Expand Down

0 comments on commit 81b8725

Please sign in to comment.