From 536fc0865f54b80eb9b815934f7d3ac3234aa0ed Mon Sep 17 00:00:00 2001 From: David Ellis Date: Fri, 6 Dec 2024 13:40:46 -0600 Subject: [PATCH] Remove the test branch from the root scope (#994) --- alan/src/program/ctype.rs | 8 ++++---- alan/src/std/root.ln | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/alan/src/program/ctype.rs b/alan/src/program/ctype.rs index 9d1d7ed7f..360403fb9 100644 --- a/alan/src/program/ctype.rs +++ b/alan/src/program/ctype.rs @@ -102,7 +102,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#js-clone-fix".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), @@ -135,7 +135,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#js-clone-fix".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), @@ -168,7 +168,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#js-clone-fix".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), @@ -201,7 +201,7 @@ impl CType { Box::new(CType::Node(Box::new(CType::Dependency( Box::new(CType::TString("alan_std".to_string())), Box::new(CType::TString( - "https://github.com/alantech/alan.git#js-clone-fix".to_string(), + "https://github.com/alantech/alan.git".to_string(), )), )))), )), diff --git a/alan/src/std/root.ln b/alan/src/std/root.ln index 03f3e3073..7ad7b17a4 100644 --- a/alan/src/std/root.ln +++ b/alan/src/std/root.ln @@ -117,7 +117,7 @@ type Js = Env{"ALAN_OUTPUT_LANG"} == "js"; // Importing the Root Scope backing implementation and supporting 3rd party libraries type{Rs} RootBacking = Rust{"alan_std" @ "https://github.com/alantech/alan.git"}; -type{Js} RootBacking = Node{"alan_std" @ "https://github.com/alantech/alan.git#js-clone-fix"}; +type{Js} RootBacking = Node{"alan_std" @ "https://github.com/alantech/alan.git"}; // Defining derived types type void = ();