1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00
node-red-nodes/hardware/neopixel/scripts/checklib.js
Dave Conway-Jones e376802ff4
fixes for noe-pixel to check more thoroughly for new libs
while supporting old ones also.
2017-09-01 15:22:35 +01:00

14 lines
479 B
JavaScript
Executable File

#!/usr/bin/env node
var fs = require('fs');
if (!fs.existsSync('/usr/local/lib/python2.7/dist-packages/unicornhat.py')) {
console.warn("WARNING : Can't find required python library");
console.warn("WARNING : Please install using the following command");
console.warn("WARNING : Note: this uses root...");
console.warn("WARNING : curl -sS get.pimoroni.com/unicornhat | bash\n");
//process.exit(1);
}
else {
console.log("Python library found OK.\n")
}