mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add RPi.GPIO lib test for ArchLinux
This commit is contained in:
parent
f484156d8e
commit
53ca3046b3
@ -30,11 +30,17 @@ module.exports = function(RED) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
fs.statSync("/usr/share/doc/python-rpi.gpio");
|
fs.statSync("/usr/share/doc/python-rpi.gpio"); // test on Raspbian
|
||||||
|
// /usr/lib/python2.7/dist-packages/RPi/GPIO
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
|
try {
|
||||||
|
fs.statSync("/usr/lib/python2.7/site-packages/RPi/GPIO"); // test on Arch
|
||||||
|
}
|
||||||
|
catch(err) {
|
||||||
RED.log.warn(RED._("rpi-gpio.errors.libnotfound"));
|
RED.log.warn(RED._("rpi-gpio.errors.libnotfound"));
|
||||||
throw "Warning : "+RED._("rpi-gpio.errors.libnotfound");
|
throw "Warning : "+RED._("rpi-gpio.errors.libnotfound");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ( !(1 & parseInt((fs.statSync(gpioCommand).mode & parseInt("777", 8)).toString(8)[0]) )) {
|
if ( !(1 & parseInt((fs.statSync(gpioCommand).mode & parseInt("777", 8)).toString(8)[0]) )) {
|
||||||
RED.log.error(RED._("rpi-gpio.errors.needtobeexecutable",{command:gpioCommand}));
|
RED.log.error(RED._("rpi-gpio.errors.needtobeexecutable",{command:gpioCommand}));
|
||||||
|
Loading…
Reference in New Issue
Block a user