mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
11 lines
315 B
CoffeeScript
Executable File
11 lines
315 B
CoffeeScript
Executable File
#!/usr/bin/env coffee
|
|
|
|
path = require 'path'
|
|
CommandInstaller = require '../src/command-installer'
|
|
|
|
callback = (error) ->
|
|
console.warn error.message if error?
|
|
|
|
CommandInstaller.installAtomCommand(path.resolve(__dirname, '..'), callback)
|
|
CommandInstaller.installApmCommand(path.resolve(__dirname, '..'), callback)
|