summaryrefslogtreecommitdiff
path: root/push-all
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-09-14 13:26:58 +0000
committerIan Lynagh <igloo@earth.li>2007-09-14 13:26:58 +0000
commite05f9de137269701df667b69d741dfae616694f7 (patch)
tree96869c0174c1f79f638d231919dd0cffe4060276 /push-all
parenta28ba79a751ec22728e9bdf4184524d72b038339 (diff)
downloadhaskell-e05f9de137269701df667b69d741dfae616694f7.tar.gz
Refer to "boot" libs, not "core" libs
Diffstat (limited to 'push-all')
-rw-r--r--push-all14
1 files changed, 7 insertions, 7 deletions
diff --git a/push-all b/push-all
index e48692397c..3f3515ed23 100644
--- a/push-all
+++ b/push-all
@@ -11,8 +11,8 @@ my $ignore_failure = 0;
# --checked-out says we are pushing to a checked out tree
my $checked_out = 0;
-# --core-only says we only want to push corelibs, not extralibs
-my $core_only = 0;
+# --boot-only says we only want to push bootlibs, not extralibs
+my $boot_only = 0;
# --push or --pull?
my $push_pull = "push";
@@ -49,9 +49,9 @@ sub pushall {
message "== $dir not present or not a repository; skipping";
}
}
- my $library_lists = $core_only
- ? "libraries/core-packages"
- : "libraries/core-packages libraries/extra-packages";
+ my $library_lists = $boot_only
+ ? "libraries/boot-packages"
+ : "libraries/boot-packages libraries/extra-packages";
for my $pkg (`cat $library_lists`) {
chomp $pkg;
$dir = "libraries/$pkg";
@@ -83,8 +83,8 @@ sub main {
elsif ($arg eq "--checked-out") {
$checked_out = 1;
}
- elsif ($arg eq "--core-only") {
- $core_only = 1;
+ elsif ($arg eq "--boot-only") {
+ $boot_only = 1;
}
elsif ($arg eq "--push") {
$push_pull = "push";