Skip to content

Commit

Permalink
add denug line
Browse files Browse the repository at this point in the history
  • Loading branch information
UrielCh committed Apr 16, 2024
1 parent eb9a29d commit becb7a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/prebuild-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v3
- name: Install Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: 'pnpm'
Expand All @@ -61,6 +62,9 @@ jobs:
- name: pnpm run prepack
run: pnpm run prepack

- name: debug
run: node ./bin/install.js OPENCV4NODEJS_INCLUDES

- name: build native code
run: npx node-gyp rebuild

Expand Down
4 changes: 4 additions & 0 deletions bin/install.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env node
import * as compileLib from "../install/compileLib";
const {argv} = process;
compileLib.compileLib(argv);

0 comments on commit becb7a8

Please sign in to comment.