From 0cf29dd94265dc24a8ee59d1aa0870ac2a5963b8 Mon Sep 17 00:00:00 2001 From: Joe Toth Date: Sun, 31 May 2020 19:06:31 -0400 Subject: [PATCH] Show the user the output of the compile command so they know something is happening, plus if there is an error they need to address. --- tmux-thumbs.tmux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux-thumbs.tmux b/tmux-thumbs.tmux index d879bdc..92d9c09 100755 --- a/tmux-thumbs.tmux +++ b/tmux-thumbs.tmux @@ -11,5 +11,5 @@ tmux bind-key $THUMBS_KEY run-shell -b "${CURRENT_DIR}/tmux-thumbs.sh" BINARY="${CURRENT_DIR}/target/release/thumbs" if [ ! -f "$BINARY" ]; then - cd "${CURRENT_DIR}" && cargo build --release + tmux split-window "cd ${CURRENT_DIR} && cargo build --release && echo 'Press any key to continue...' && read -k1" fi