Skip to content

Commit 3493156

Browse files
committed
fix
1 parent cc2851e commit 3493156

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Makefile.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,16 @@ script_runner = "@duckscript"
9393
script = '''
9494
domains = array llm web-search
9595
96+
# since it depends on build artifacts
97+
if is_empty ${1}
98+
for domain in ${domains}
99+
exec cargo make --cwd ${domain} build
100+
end
101+
else
102+
exec cargo make --cwd ${1} build
103+
end
104+
105+
96106
# if there is no domain passed run for every domain
97107
if is_empty ${1}
98108
for domain in ${domains}

test/components-rust/test-web-search/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ crate-type = ["cdylib"]
99
required-features = []
1010

1111
[features]
12-
default = ["google"]
12+
default = []
1313
google = []
1414
brave = []
1515
tavily = []

0 commit comments

Comments
 (0)