Skip to content

Commit

Permalink
chore: test more
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge committed Jan 21, 2024
1 parent c32351c commit 2add64a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jobs:
- run: yarn config set nodeLinker node-modules
- run: yarn init -y
- run: yarn add -D ./supabase-1.28.0.tgz
# - run: yarn run -T supabase --version
- run: ./node_modules/.bin/supabase --version
- run: yarn run -T supabase --version
# - run: ./node_modules/.bin/supabase --version

pnpm:
needs: pack
Expand Down
3 changes: 2 additions & 1 deletion scripts/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async function main() {
}

const pkg = await readPackageJson();
if (platform == "windows") {
if (platform === "windows") {
// Update bin path in package.json
pkg.bin[pkg.name] += ".exe";
}
Expand Down Expand Up @@ -159,6 +159,7 @@ async function main() {
});

// Link the binaries in postinstall to support yarn
console.error(path.resolve("."));
await binLinks({
path: path.resolve("."),
pkg: { ...pkg, bin: { [pkg.name]: binPath } },
Expand Down

0 comments on commit 2add64a

Please sign in to comment.