Manually fix Android sdk location to support library projects without local.properties

This commit is contained in:
Ian Clelland
2014-05-22 14:04:00 -04:00
parent 97008305ff
commit 22b1959333
7 changed files with 186 additions and 1 deletions
Generated Vendored Executable
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env node
var which = require("../")
if (process.argv.length < 3) {
console.error("Usage: which <thing>")
process.exit(1)
}
which(process.argv[2], function (er, thing) {
if (er) {
console.error(er.message)
process.exit(er.errno || 127)
}
console.log(thing)
})