mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
This changes the command installation to use symlinks instead of copying over the contents of the file.
51 lines
1.6 KiB
CoffeeScript
51 lines
1.6 KiB
CoffeeScript
path = require 'path'
|
|
fs = require 'fs'
|
|
_ = require 'underscore'
|
|
async = require 'async'
|
|
mkdirp = require 'mkdirp'
|
|
fsUtils = require 'fs-utils'
|
|
|
|
symlinkCommand = (sourcePath, destinationPath, callback) ->
|
|
mkdirp fsUtils.directory(destinationPath), (error) ->
|
|
if error?
|
|
callback(error)
|
|
else
|
|
fs.symlink sourcePath, destinationPath, (error) ->
|
|
if error?
|
|
callback(error)
|
|
else
|
|
fs.chmod(destinationPath, 0o755, callback)
|
|
|
|
unlinkCommand = (destinationPath, callback) ->
|
|
fs.exists destinationPath, (exists) ->
|
|
if exists
|
|
fs.unlink(destinationPath, callback)
|
|
else
|
|
callback()
|
|
|
|
module.exports =
|
|
findInstallDirectory: (callback) ->
|
|
directories = ['/opt/boxen','/opt/github','/usr/local']
|
|
async.detect(directories, fsUtils.isDirectoryAsync, callback)
|
|
|
|
install: (commandPath, commandName, callback) ->
|
|
if not commandName? or _.isFunction(commandName)
|
|
callback = commandName
|
|
commandName = path.basename(commandPath, path.extname(commandPath))
|
|
|
|
installCallback = (error) ->
|
|
if error?
|
|
console.warn "Failed to install `#{commandName}` binary", error
|
|
callback?(error)
|
|
|
|
@findInstallDirectory (directory) ->
|
|
if directory?
|
|
destinationPath = path.join(directory, 'bin', commandName)
|
|
unlinkCommand destinationPath, (error) ->
|
|
if error?
|
|
installCallback(error)
|
|
else
|
|
symlinkCommand(commandPath, destinationPath, installCallback)
|
|
else
|
|
installCallback(new Error("No destination directory exists to install"))
|