Skip to content

Commit

Permalink
Merge pull request #847 from UpstreetAI/fix-os-compatibility-issue
Browse files Browse the repository at this point in the history
fix: preinstall script syntax issue
  • Loading branch information
mavisakalyan authored Feb 5, 2025
2 parents 141eb60 + 1f3cf76 commit d56628e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/usdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "module",
"main": "module.mjs",
"scripts": {
"preinstall": "[[ $npm_config_global == 'true' ]] || exit 0; cd packages/upstreet-agent && pnpm install --ignore-workspace --no-frozen-lockfile"
"preinstall": "[ \"${npm_config_global:-}\" = 'true' ] || exit 0; cd packages/upstreet-agent && pnpm install --ignore-workspace --no-frozen-lockfile"
},
"keywords": [
"ai",
Expand Down

0 comments on commit d56628e

Please sign in to comment.