Skip to content

Commit b3d779c

Browse files
committed
Fix broken build path
Dependency update broke a path in the publish script. Fixing to progress build.
1 parent fbb07eb commit b3d779c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ fs.writeFileSync("./dist/package.json", JSON.stringify(npmPackageJson, null, 2))
4545

4646
//Use a fully qualified path to pre-gyp binary for Windows support
4747
const cwd = shell.pwd().toString();
48-
shell.exec(`${cwd}/node_modules/node-pre-gyp/bin/node-pre-gyp package`);
48+
shell.exec(`${cwd}/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp package`);
4949
var tgz = shell.exec("find ./build -name *.tar.gz");
5050
shell.cp(tgz, "./bin-package/");
5151
shell.pushd("./dist");

0 commit comments

Comments
 (0)