Remove submodules task

This is handled in script/bootstrap
This commit is contained in:
Kevin Sawicki
2013-05-28 12:56:45 -07:00
parent 9919387904
commit 8c774a204d

View File

@@ -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}"