mirror of
https://github.com/grafana/grafana.git
synced 2026-09-05 04:40:13 -05:00
Chore: fix shellchecks (#83421)
This commit is contained in:
@@ -17,7 +17,15 @@ while IFS=" " read -r -a package; do
|
||||
CURRENT="./pr/$PACKAGE_PATH"
|
||||
|
||||
# Temporarily skipping these packages as they don't have any exposed static typing
|
||||
if [[ ${SKIP_PACKAGES[@]} =~ "$PACKAGE_PATH" ]]; then
|
||||
SKIP_PACKAGE_FOUND=0
|
||||
for skip_pkg in "${SKIP_PACKAGES[@]}"; do
|
||||
if [[ "$PACKAGE_PATH" == "$skip_pkg" ]]; then
|
||||
SKIP_PACKAGE_FOUND=1
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
if [[ $SKIP_PACKAGE_FOUND -eq 1 ]]; then
|
||||
continue
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user