Skip to content

Commit

Permalink
fix #29
Browse files Browse the repository at this point in the history
  • Loading branch information
scravy committed May 4, 2020
1 parent 0f329b4 commit 90a3b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/linux.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
var execFile = require('child_process').execFile;

module.exports = function (iface, callback) {
execFile("cat", ["/sys/class/net/" + iface + "/address"], function (err, out) {
execFile("/bin/cat", ["/sys/class/net/" + iface + "/address"], function (err, out) {
if (err) {
callback(err, null);
return;
Expand Down

0 comments on commit 90a3b7d

Please sign in to comment.