Skip to content

Commit

Permalink
Remove the test branch from the root scope (#994)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfellis authored Dec 6, 2024
1 parent a43eaa3 commit 536fc08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions alan/src/program/ctype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)),
)))),
)),
Expand Down Expand Up @@ -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(),
)),
)))),
)),
Expand Down Expand Up @@ -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(),
)),
)))),
)),
Expand Down Expand Up @@ -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(),
)),
)))),
)),
Expand Down
2 changes: 1 addition & 1 deletion alan/src/std/root.ln
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ();
Expand Down

0 comments on commit 536fc08

Please sign in to comment.