Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
LandryNorris committed Aug 17, 2023
1 parent 31fce68 commit f567cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/librhsp/lib/binding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { SerialParity } from "@rev-robotics/rev-hub-core";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const require = createRequire(import.meta.url);
const addon = {}//require("node-gyp-build")(path.join(__dirname, ".."));
const addon = require("node-gyp-build")(path.join(__dirname, ".."));

export * from "./error-codes.js";
export * from "./serial-errors.js";
Expand Down

0 comments on commit f567cd5

Please sign in to comment.