juliaup/command_initial_setup_from_launcher.rs
1use crate::{command_add::run_command_add, global_paths::GlobalPaths};
2use anyhow::{Context, Result};
3
4pub fn run_command_initial_setup_from_launcher(paths: &GlobalPaths) -> Result<()> {
5 run_command_add("release", paths)
6 .with_context(|| "Failed to run `run_command_add` from the `run_command_initial_setup_from_launcher` command.")?;
7
8 Ok(())
9}