From 3b35a4b63b01ca35cb6ed7acd362a6d0c9defbb1 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 16 May 2013 12:16:30 -0700 Subject: [PATCH] Link atom.sh instead of copying --- Rakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 1dd389723..9ceb956c9 100644 --- a/Rakefile +++ b/Rakefile @@ -63,8 +63,7 @@ task :install => [:build] do raise "Missing directory for `atom` binary" end - FileUtils.cp("#{ATOM_SRC_PATH}/atom.sh", cli_path) - FileUtils.chmod(0755, cli_path) + FileUtils.ln_s "#{ATOM_SRC_PATH}/atom.sh", cli_path, :force => true Rake::Task["clone-default-bundles"].invoke()