Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Commit 2270e88

Browse files
committed
fix path to package.json
1 parent d10baec commit 2270e88

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/waitpid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
var binary = require('node-pre-gyp');
33
var path = require('path');
4-
var binding_path = binary.find(path.resolve(path.join(__dirname,'./package.json')));
4+
var binding_path = binary.find(path.resolve(path.join(__dirname,'../package.json')));
55
var binding = require(binding_path);
66

77
module.exports = {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "waitpid2",
3-
"version": "2.0.4",
3+
"version": "2.0.5",
44
"description": "Complete native binding to the waitpid() syscall",
55
"main": "lib/waitpid.js",
66
"scripts": {

0 commit comments

Comments
 (0)