Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
cacbd0ab
Commit
cacbd0ab
authored
Jan 28, 2014
by
Swizzlr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[BUILD] Update Rakefile with procedures to check presence of bzr and hg.
parent
20056d29
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
Rakefile
Rakefile
+10
-0
No files found.
Rakefile
View file @
cacbd0ab
...
@@ -370,6 +370,16 @@ task :bootstrap, :use_bundle_dir? do |t, args|
...
@@ -370,6 +370,16 @@ task :bootstrap, :use_bundle_dir? do |t, args|
else
else
execute_command
"env XCODEPROJ_BUILD=1 bundle install"
execute_command
"env XCODEPROJ_BUILD=1 bundle install"
end
end
puts
"Checking for hg and bzr..."
if
`which hg`
.
strip
.
empty?
puts
"Please install Mercurial: `brew install hg`"
end
if
`which bzr`
.
strip
.
empty?
puts
"Please install Bazaar: `brew install bzr`"
end
puts
"done."
end
end
#-----------------------------------------------------------------------------#
#-----------------------------------------------------------------------------#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment