Skip to content

Commit

Permalink
fix: rename Inception to ZkStack
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelmauro committed Oct 18, 2024
1 parent b172bc6 commit e924ef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zkstack_cli/crates/zkstack/src/commands/autocomplete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use common::logger;
use super::args::AutocompleteArgs;
use crate::{
messages::{msg_generate_autocomplete_file, MSG_OUTRO_AUTOCOMPLETE_GENERATION},
Inception,
ZkStack,
};

pub fn run(args: AutocompleteArgs) -> anyhow::Result<()> {
Expand All @@ -33,7 +33,7 @@ pub fn run(args: AutocompleteArgs) -> anyhow::Result<()> {
}

pub fn generate_completions<G: Generator>(gen: G, buf: &mut dyn Write) -> anyhow::Result<()> {
let mut cmd = Inception::command();
let mut cmd = ZkStack::command();
let cmd_name = cmd.get_name().to_string();

generate(gen, &mut cmd, cmd_name, buf);
Expand Down

0 comments on commit e924ef7

Please sign in to comment.