mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
12 lines
384 B
CoffeeScript
Executable File
12 lines
384 B
CoffeeScript
Executable File
#!/usr/bin/env coffee
|
|
|
|
path = require 'path'
|
|
CommandInstaller = require '../src/command-installer'
|
|
|
|
callback = (error, sourcePath, destinationPath) ->
|
|
unless error?
|
|
console.log "#{sourcePath} intalled to #{destinationPath}"
|
|
|
|
CommandInstaller.installAtomCommand(path.resolve(__dirname, '..'), callback)
|
|
CommandInstaller.installApmCommand(path.resolve(__dirname, '..'), callback)
|