UNPKG
inertia-cli
Version:
latest (0.6.0)
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0
Inertia-CLI
inertia.ubclaunchpad.com
ubclaunchpad/inertia
inertia-cli
/
src
/
install.js
13 lines
(10 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node
const
utils =
require
(
'./utils.js'
); utils.
install
(
(
err
) =>
{
if
(err) {
console
.
error
(err); process.
exit
(
1
); }
else
{ process.
exit
(
0
); } });