Change package.json check from executable to readable

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Robby Russell
2026-09-05 15:36:19 -07:00
committed by GitHub
co-authored by Copilot Autofix powered by AI
parent e2be8df511
commit 0bcac0d11f
+1 -2
View File
@@ -30,8 +30,7 @@ function _shopify_project_type() {
while [[ -n "$dir" && "$dir" != "/" && "$dir" != "$HOME" ]]; do
if [[ -x "$dir/node_modules/.bin/h2" ]] ||
[[ -f "$dir/package.json" && "$(<"$dir/package.json")" == *'"@shopify/hydrogen"'* ]]; then
print -r -- hydrogen
[[ -r "$dir/package.json" && "$(<"$dir/package.json")" == *'"@shopify/hydrogen"'* ]]; then
return 0
fi