mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
define(function(require, exports, module) {
|
|
|
|
module.exports = function(session, options) {
|
|
session.install({
|
|
"name": "c9",
|
|
"description": "The Cloud9 command line interface",
|
|
"optional": true
|
|
}, {
|
|
"npm-g": ["c9"]
|
|
});
|
|
|
|
// Show the installation screen
|
|
session.start();
|
|
};
|
|
|
|
|
|
}); |