Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
GHC
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alex D
GHC
Commits
abd6576d
Commit
abd6576d
authored
Jan 19, 2006
by
Simon Marlow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
respect the -q switch in this script
parent
44deb23d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
darcs-all
darcs-all
+17
-4
No files found.
darcs-all
View file @
abd6576d
...
...
@@ -7,16 +7,25 @@ top_dirs="nofib testsuite"
default_repo_root
=
"http://darcs.haskell.org/"
default_lib_repo_root
=
$default_repo_root
/packages
quiet
=
NO
function
message
()
{
if
[
"
$quiet
"
=
"NO"
]
;
then
echo
$*
fi
}
function
darcsall
()
{
echo
==
running darcs
$*
at the top level
message
"== running darcs
$*
at the top level"
darcs
$*
for
dir
in
$top_dirs
;
do
if
test
-d
$dir
-a
-d
$dir
/_darcs
;
then
echo
"== running darcs
$*
in
$dir
"
message
"== running darcs
$*
in
$dir
"
darcs
$*
--repodir
$dir
else
echo
"==
$dir
not present or not a repository; skipping"
message
"==
$dir
not present or not a repository; skipping"
fi
done
for
pkg
in
`
cat
libraries/default-packages
`
;
do
...
...
@@ -48,7 +57,7 @@ function darcsget()
echo
"warning:
$pkg
already present; omitting"
else
repo
=
$lib_repos
/
$pkg
echo
"== running darcs get --partial
$*
$repo
"
message
"== running darcs get --partial
$*
$repo
"
darcs get
--partial
$*
$repo
fi
done
...
...
@@ -59,6 +68,10 @@ if test ! -d _darcs -o ! -d ghc; then
exit
1
;
fi
case
$*
in
*
-q
*
)
quiet
=
YES
;;
esac
case
$1
in
get
)
shift
;
darcsget
$*
;;
# Hack around whatsnew failing if there are no changes
...
...
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