mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-18 01:29:47 +00:00
Remove references to obsolete .rp1 format
This commit is contained in:
parent
9e304e4b1e
commit
a38380ec76
4 changed files with 5 additions and 5 deletions
|
@ -170,7 +170,7 @@ pub fn build_app<'a>() -> Command<'a> {
|
|||
.arg(
|
||||
Arg::new(FLAG_TAR)
|
||||
.long(FLAG_TAR)
|
||||
.help("Create a .rp1 bundle for a package, so others can add it as a HTTPS dependency.")
|
||||
.help("Create a .tar archive of a package, so others can add it as a HTTPS dependency.")
|
||||
.required(false),
|
||||
)
|
||||
.arg(
|
||||
|
@ -532,7 +532,7 @@ pub fn build(
|
|||
let created_path = path.with_file_name(&filename);
|
||||
|
||||
println!(
|
||||
"\nBundled \x1B[33m{}\x1B[39m and its dependent files into the following file in {total_time} ms:\n\n\t\x1B[33m{}\x1B[39m\n\nTo distribute this bundle as a package, upload this to some URL and then add it as a dependency with:\n\n\t\x1B[32m\"https://your-url-goes-here/{filename}\"\x1B[39m\n",
|
||||
"\nBundled \x1B[33m{}\x1B[39m and its dependent files into the following archive in {total_time} ms:\n\n\t\x1B[33m{}\x1B[39m\n\nTo distribute this archive as a package, upload this to some URL and then add it as a dependency with:\n\n\t\x1B[32m\"https://your-url-goes-here/{filename}\"\x1B[39m\n",
|
||||
path.to_string_lossy(),
|
||||
created_path.to_string_lossy()
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue