From 2fda959cd69dafe8cdedb71d5b758d86ee4fa8f3 Mon Sep 17 00:00:00 2001 From: Valerio Ageno <51341197+Valerioageno@users.noreply.github.com> Date: Sat, 30 Nov 2024 14:16:18 +0100 Subject: [PATCH] feat: update tuono new repository reference (#178) Co-authored-by: Valerio Ageno --- crates/tuono/src/scaffold_project.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/tuono/src/scaffold_project.rs b/crates/tuono/src/scaffold_project.rs index 6ea5021c..feccbee4 100644 --- a/crates/tuono/src/scaffold_project.rs +++ b/crates/tuono/src/scaffold_project.rs @@ -7,9 +7,9 @@ use std::io::{self, prelude::*}; use std::path::{Path, PathBuf}; const GITHUB_TUONO_REPO_URL: &str = - "https://api.github.com/repos/Valerioageno/tuono/git/trees/main?recursive=1"; + "https://api.github.com/repos/tuono-labs/tuono/git/trees/main?recursive=1"; -const GITHUB_RAW_CONTENT_URL: &str = "https://raw.githubusercontent.com/Valerioageno/tuono/main/"; +const GITHUB_RAW_CONTENT_URL: &str = "https://raw.githubusercontent.com/tuono-labs/tuono/main/"; #[derive(Deserialize, Debug)] enum GithubFileType { @@ -64,7 +64,7 @@ pub fn create_new_project(folder_name: Option, template: Option) if new_project_files.is_empty() { eprintln!("Error: Template '{template}' not found"); - println!("Hint: you can view the available templates at https://github.com/Valerioageno/tuono/tree/main/examples"); + println!("Hint: you can view the available templates at https://github.com/tuono-labs/tuono/tree/main/examples"); std::process::exit(1); }