Skip to content

Commit

Permalink
Item2543: s/core extensions/default extensions/
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@5900 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
AntonioTerceiro authored and AntonioTerceiro committed Dec 30, 2009
1 parent 17cc7ed commit 3a0d559
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions core/tools/checkout_extensions
@@ -1,6 +1,6 @@
#!/bin/sh

core_extensions() {
default_extensions() {
cut -d ' ' -f 2 lib/MANIFEST | sed -e 's#lib/Foswiki.*##' | xargs -n 1 basename | grep -v core
}

Expand All @@ -11,7 +11,8 @@ usage(){
echo
echo " --git checks out the extensions using git instead of svn"
echo " --git-rev REV When checking out with git, start history at revision REV"
echo " --core checks out all the core extensions"
echo " --default checks out all the default extensions"
echo " --developer checks out all the developer extensions"
echo " --help displays usage information"
echo
}
Expand All @@ -31,8 +32,8 @@ while test $# -gt 0; do
checkout_cmd="$checkout_cmd -r $rev"
fi
;;
--core)
extensions="$extensions $(core_extensions)"
--default)
extensions="$extensions $(default_extensions)"
;;
--developer)
extensions="$extensions BuildContrib TestFixturePlugin UnitTestContrib"
Expand Down

0 comments on commit 3a0d559

Please sign in to comment.