Initial commit — jibo-cli v3.0.7 with bundled node_modules
This commit is contained in:
2
bin/jibo-add-robot.js
Normal file
2
bin/jibo-add-robot.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.addRobot();
|
||||
2
bin/jibo-build-version.js
Normal file
2
bin/jibo-build-version.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.buildVersion();
|
||||
2
bin/jibo-debug.js
Normal file
2
bin/jibo-debug.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.debug();
|
||||
2
bin/jibo-delete.js
Normal file
2
bin/jibo-delete.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.del();
|
||||
2
bin/jibo-diskspace.js
Normal file
2
bin/jibo-diskspace.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.diskspace();
|
||||
2
bin/jibo-get-volume.js
Normal file
2
bin/jibo-get-volume.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.getVolume();
|
||||
2
bin/jibo-index.js
Normal file
2
bin/jibo-index.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.index();
|
||||
2
bin/jibo-init.js
Normal file
2
bin/jibo-init.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.init();
|
||||
2
bin/jibo-poweroff.js
Normal file
2
bin/jibo-poweroff.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.poweroff();
|
||||
2
bin/jibo-reboot.js
Normal file
2
bin/jibo-reboot.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.reboot();
|
||||
2
bin/jibo-remove-robot.js
Normal file
2
bin/jibo-remove-robot.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.removeRobot();
|
||||
2
bin/jibo-robot-list.js
Normal file
2
bin/jibo-robot-list.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.robotList();
|
||||
2
bin/jibo-run.js
Normal file
2
bin/jibo-run.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.run();
|
||||
2
bin/jibo-set-default-robot.js
Normal file
2
bin/jibo-set-default-robot.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.setDefaultRobot();
|
||||
2
bin/jibo-set-volume.js
Normal file
2
bin/jibo-set-volume.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.setVolume();
|
||||
2
bin/jibo-sim.js
Normal file
2
bin/jibo-sim.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.sim();
|
||||
2
bin/jibo-stop.js
Normal file
2
bin/jibo-stop.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.stop();
|
||||
2
bin/jibo-sync.js
Normal file
2
bin/jibo-sync.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.sync();
|
||||
2
bin/jibo-update-robot.js
Normal file
2
bin/jibo-update-robot.js
Normal file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.updateRobot();
|
||||
2
bin/jibo.js
Executable file
2
bin/jibo.js
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env node
|
||||
new (require('../')).cli.main(__dirname);
|
||||
5
bin/npm-install-skill.sh
Executable file
5
bin/npm-install-skill.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
# cd into package directory and run npm install
|
||||
cd $1;
|
||||
npm install
|
||||
Reference in New Issue
Block a user