Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
72d83ada
Commit
72d83ada
authored
10 years ago
by
Jack Nagel
Browse files
Options
Downloads
Patches
Plain Diff
Adjust link command for updated error handling
parent
6b5e92ac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Library/Homebrew/cmd/link.rb
+10
-32
10 additions, 32 deletions
Library/Homebrew/cmd/link.rb
with
10 additions
and
32 deletions
Library/Homebrew/cmd/link.rb
+
10
−
32
View file @
72d83ada
...
...
@@ -32,9 +32,16 @@ module Homebrew extend self
end
keg
.
lock
do
print
"Linking
#{
keg
}
... "
do
puts
if
ARGV
.
verbose?
puts
"
#{
keg
.
link
(
mode
)
}
symlinks created"
print
"Linking
#{
keg
}
... "
puts
if
ARGV
.
verbose?
begin
n
=
keg
.
link
(
mode
)
rescue
Keg
::
LinkError
puts
raise
else
puts
"
#{
n
}
symlinks created"
end
end
end
...
...
@@ -47,33 +54,4 @@ module Homebrew extend self
rescue
FormulaUnavailableError
false
end
# Allows us to ensure a puts happens before the block exits so that if say,
# an exception is thrown, its output starts on a new line.
def
print
str
,
&
block
Kernel
.
print
str
STDERR
.
extend
Module
.
new
{
def
puts
(
*
args
)
unless
$did_puts
STDOUT
.
puts
$did_puts
=
true
end
super
end
}
puts_capture
=
Class
.
new
do
def
self
.
puts
(
*
args
)
$did_puts
=
true
Kernel
.
puts
(
*
args
)
end
end
puts_capture
.
instance_eval
(
&
block
)
ensure
puts
unless
$did_puts
end
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment