Skip to content

Commit

Permalink
change package name and binary name to nu-alias-converter
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelarie committed Oct 14, 2024
1 parent a9e4ff7 commit e100ca3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "bash-aliases-converter"
name = "nu-alias-converter"
version = "0.1.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn main() {
File::create(&output_file_path).expect("Error creating output file");
let mut writer = BufWriter::new(file);

writeln!(writer, "# Aliases auto generated by bash-alias-generator\n")
writeln!(writer, "# Aliases auto generated by nu-alias-converter\n")
.expect("Error writing to file");

for alias in aliases {
Expand Down

0 comments on commit e100ca3

Please sign in to comment.