From 8c774a204d1416d07dec451501f83575cf00f306 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 28 May 2013 12:56:45 -0700 Subject: [PATCH] Remove submodules task This is handled in script/bootstrap --- Rakefile | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Rakefile b/Rakefile index 9a66af2aa..44fb5aede 100644 --- a/Rakefile +++ b/Rakefile @@ -39,8 +39,6 @@ task :install => [:build] do `rm -rf #{dest_path}` `cp -a #{path} #{File.expand_path(dest_path)}` - Rake::Task["clone-default-bundles"].invoke() - puts "\033[32mAtom is installed at `#{dest_path}`.\033[0m" end @@ -48,12 +46,6 @@ task "setup-codesigning" do ENV['CODE_SIGN'] = "Developer ID Application: GitHub" end -desc "Clone default bundles into vendor/bundles directory" -task "clone-default-bundles" do - `git submodule --quiet sync` - `git submodule --quiet update --recursive --init` -end - desc "Clean build Atom via `xcodebuild`" task :clean do output = `xcodebuild clean` @@ -66,7 +58,7 @@ task :clean do end desc "Run the specs" -task :test => ["clone-default-bundles", "build"] do +task :test => ["build"] do `pkill Atom` if path = application_path() cmd = "#{path}/Contents/MacOS/Atom --test --resource-path=#{ATOM_SRC_PATH}"