From a5995a6bb874f0e71f5eaad71486f1cd76c1fa9e Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Tue, 11 Jun 2024 10:26:45 +0000 Subject: [PATCH] chore: remove bloated echo make sure to flock correctly Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- local.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local.sh b/local.sh index c44a51e5..e813afd4 100755 --- a/local.sh +++ b/local.sh @@ -168,9 +168,9 @@ if [ "$TESTS" = true ]; then # Check if the lock file already exists if [ -f "$LOCK_FILE" ]; then - echo "Another instance of the script is already running tests. Waiting for it to finish..." flock -s "$lock_fd" fi + "$UV_BIN" pip install -r "$GIT_ROOT/tools/tests-requirements.txt" # TODO: uv tool run once it becomes more stable