Skip to content

Commit

Permalink
recordings: Make get_back_in_sync.sh respect ${MAKE}
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Nov 28, 2023
1 parent e51eb53 commit 48e5fd7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion recordings/get_back_in_sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

set -e -u

: ${MAKE:=make}

self_dir="$(dirname "$(type -P "$0")")"

cd "${self_dir}"
Expand All @@ -16,7 +18,7 @@ if ! git diff --exit-code >/dev/null \
exit 1
fi

make -C .. # to ensure up-to-date ttyplot binary
"${MAKE}" -C .. # to ensure up-to-date ttyplot binary

./record.sh

Expand Down

0 comments on commit 48e5fd7

Please sign in to comment.