diff options
author | Ian Lynagh <igloo@earth.li> | 2007-09-14 13:26:58 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-09-14 13:26:58 +0000 |
commit | e05f9de137269701df667b69d741dfae616694f7 (patch) | |
tree | 96869c0174c1f79f638d231919dd0cffe4060276 /push-all | |
parent | a28ba79a751ec22728e9bdf4184524d72b038339 (diff) | |
download | haskell-e05f9de137269701df667b69d741dfae616694f7.tar.gz |
Refer to "boot" libs, not "core" libs
Diffstat (limited to 'push-all')
-rw-r--r-- | push-all | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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"; |