Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Shayne Fletcher
Glasgow Haskell Compiler
Commits
933e8d01
Commit
933e8d01
authored
Apr 30, 2007
by
Ian Lynagh
Browse files
Look for -q in the darcs flags as well as the darcs-all flags
parent
56bf6730
Changes
1
Hide whitespace changes
Inline
Side-by-side
darcs-all
View file @
933e8d01
...
...
@@ -124,6 +124,8 @@ sub main {
while
(
$
#_ ne -1) {
my
$arg
=
shift
;
# We handle -q here as well as lower down as we need to skip over it
# if it comes before the darcs command
if
(
$arg
eq
"
-q
")
{
$verbose
=
0
;
}
...
...
@@ -138,6 +140,9 @@ sub main {
}
else
{
unshift
@
_
,
$arg
;
if
(
grep
/^-q$/
,
@
_
)
{
$verbose
=
0
;
}
last
;
}
}
...
...
Write
Preview
Supports
Markdown
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