Merge pull request #170 from resin-io/jviotti/cleanup-resin-write

Remove unused resin-write bin script
This commit is contained in:
Juan Cruz Viotti 2015-08-19 12:49:25 -04:00
commit 006764af66

View File

@ -1,16 +0,0 @@
#!/usr/bin/env node
var os = require('../build/actions/os');
var errors = require('../build/errors');
// TODO: Do some error handling when image or device are incorrect
os.install.action({
image: process.argv[2],
device: process.argv[3]
}, {
yes: true,
fromScript: true
}, function(error) {
return errors.handle(error);
});