diff --git a/bin/dev/check-boundary.sh b/bin/dev/check-boundary.sh index 974dc4442..d855e2384 100755 --- a/bin/dev/check-boundary.sh +++ b/bin/dev/check-boundary.sh @@ -5,6 +5,7 @@ cd "$(dirname "$0")/../.." server_symbol_allowlist=( "lib/crates/fabro-cli/src/local_server.rs" + "lib/crates/fabro-cli/src/commands/install.rs" "lib/crates/fabro-cli/src/commands/run/runner.rs" "lib/crates/fabro-cli/src/commands/pr/mod.rs" "lib/crates/fabro-cli/src/commands/pr/create.rs" diff --git a/bin/dev/check-env-mutation.sh b/bin/dev/check-env-mutation.sh index 6b95cb8f7..dff4ac811 100755 --- a/bin/dev/check-env-mutation.sh +++ b/bin/dev/check-env-mutation.sh @@ -21,6 +21,7 @@ while IFS= read -r match; do case "$path:$line" in "lib/crates/fabro-telemetry/src/spawn.rs:std::env::set_var(key, value);" | \ "lib/crates/fabro-telemetry/src/spawn.rs:std::env::remove_var(key);" | \ + 'lib/crates/fabro-cli/src/main.rs:std::env::remove_var("FABRO_WORKER_TOKEN");' | \ 'lib/crates/fabro-server/src/install.rs:std::env::set_var("FABRO_TEST_IN_MEMORY_STORE", "1");') continue ;;