Skip to content

Commit

Permalink
. test ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cognitivim committed Dec 19, 2018
1 parent aef6d23 commit d2b9529
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/node-firebird-native-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/asfernandes/node-firebird-drivers.git"
"url": "git+https://github.com/punkusha/node-firebird-drivers.git"
},
"keywords": [
"firebird"
Expand Down Expand Up @@ -75,7 +75,7 @@
"module_name": "addon",
"module_path": "./build-pre-gyp/{node_abi}-{platform}-{arch}",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}.tar.gz",
"host": "https://github.com/asfernandes/node-firebird-drivers/releases/download/",
"host": "https://github.com/punkusha/node-firebird-drivers/releases/download/",
"remote_path": "node-firebird-native-api@{version}"
}
}
2 changes: 1 addition & 1 deletion packages/node-firebird-native-api/src/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function getDefaultLibraryFilename(): string {
}

const bindingPath = binary.find(path.resolve(path.join(__dirname, '../../package.json')));
const native = require(bindingPath)('addon'); // require('bindings')('addon')
const native = require(bindingPath); // require('bindings')('addon')

export const getMaster: (library: string) => Master = native.getMaster;
export const disposeMaster: (master: Master) => boolean = native.disposeMaster;
Expand Down

0 comments on commit d2b9529

Please sign in to comment.