From 72bfed27bec5e93e92f0cda507090477be0e6e68 Mon Sep 17 00:00:00 2001 From: Guilherme Caulada Date: Thu, 19 Oct 2023 14:21:48 -0300 Subject: [PATCH] Fix validate-npm-packages.sh --- scripts/validate-npm-packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/validate-npm-packages.sh b/scripts/validate-npm-packages.sh index a07ebe5a662..3e6c7595087 100755 --- a/scripts/validate-npm-packages.sh +++ b/scripts/validate-npm-packages.sh @@ -31,7 +31,7 @@ for file in "$ARTIFACTS_DIR"/*.tgz; do done # @grafana/toolkit structure is different to the other packages - if [[ "$dir_name" == "grafana-toolkit" ]]; then + if [[ "$dir_name" == "@grafana-toolkit" ]]; then if [ ! -d bin ] || [ ! -f bin/grafana-toolkit.js ]; then echo -e "❌ Failed: Missing 'bin' directory or required files in package $dir_name.\n" exit 1