Skip to content

Commit

Permalink
Update index.js to remove -O
Browse files Browse the repository at this point in the history
  • Loading branch information
deanlyoung authored Dec 29, 2023
1 parent 9e661e2 commit 66c6a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ refresh: function() {
this.log ("Refreshing values...");
}

exec('smbget -q -O -U ' + that.user + '%' + that.pass + ' smb://' + that.ip + '/airvisual/latest_config_measurements.json', (error, stdout, stderr) => {
exec('smbget -q -U ' + that.user + '%' + that.pass + ' smb://' + that.ip + '/airvisual/latest_config_measurements.json', (error, stdout, stderr) => {
if (that.logging) {
that.log("[stdout]: " + JSON.stringify(stdout));
that.log("[error]: " + JSON.stringify(error));
Expand Down

0 comments on commit 66c6a51

Please sign in to comment.