From 4a227ebde24b30f20f4bb1e77a74da4e372426c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustavo=20Gir=C3=A1ldez?= Date: Fri, 20 Dec 2024 08:31:12 -0500 Subject: [PATCH] Fix shell lint warning --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 177fb30413..4439464830 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -47,7 +47,7 @@ if ! output=$( exit 1 fi -if [ ! -f submodules/stack-graphs/stack-graphs/Cargo.toml ]; then +if [[ ! -f submodules/stack-graphs/stack-graphs/Cargo.toml ]]; then # We declare stack-graphs as our dependency in root's Cargo.toml so we need to # check it out in order to run `cargo build` git submodule update --init --progress