summaryrefslogtreecommitdiff
path: root/vendor/update
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2021-01-27 16:47:08 +0000
committerSadie Powell <sadie@witchery.services>2021-01-27 16:47:08 +0000
commit859a79923a1e9df7195e1320d66b61ee162f52cc (patch)
tree691a9d5cb9aea1e587c130888b389398843b7b45 /vendor/update
parentf6b861f12d070ba931d829505bfd3229653f5df2 (diff)
Migrate some stuff away from print_format.
Diffstat (limited to 'vendor/update')
-rwxr-xr-xvendor/update2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/update b/vendor/update
index ca113ff29..3c04bc63a 100755
--- a/vendor/update
+++ b/vendor/update
@@ -43,7 +43,7 @@ my ($data, $error) = from_toml $contents;
print_error "unable to parse $config: $!" if $error;
while (my ($name, $info) = each %{$data}) {
- print_format "Updating <|GREEN $name|> ...\n";
+ say console_format "Updating <|GREEN $name|> ...";
my $unpackdir = File::Temp->newdir;
my $vendordir = catdir $RealDir, $name;