mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
Remove submodules task
This is handled in script/bootstrap
This commit is contained in:
10
Rakefile
10
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}"
|
||||
|
||||
Reference in New Issue
Block a user