You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fuse-friends_fuse-native/bin.js

21 lines
422 B

#!/usr/bin/env node
const Fuse = require('./')
const cmd = process.argv[2]
if (cmd === 'configure') {
Fuse.configure(onerror)
} else if (cmd === 'unconfigure') {
Fuse.unconfigure(onerror)
} else if (cmd === 'is-configured') {
Fuse.isConfigured(function (err, bool) {
if (err) return onerror(err)
console.log('' + bool)
process.exit(bool ? 0 : 1)
})
}
function onerror (err) {
if (err) throw err
}