Skip to content

Commit

Permalink
Fix variable check.
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrindel committed Dec 14, 2023
1 parent 7139237 commit 412973b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/run_bazel_test/run_bazel_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ else
bzl_pkgs='//...'
fi

if [[ "${working_dir:-}" != "" ]]; then
if [[ -n "${working_dir:-}" ]]; then
cd "${working_dir}"
fi

Expand Down

0 comments on commit 412973b

Please sign in to comment.