From af81f01e981a520ab23eefe78dbc8b455c45c0d8 Mon Sep 17 00:00:00 2001 From: austinletson Date: Sat, 16 Nov 2024 16:22:13 -0500 Subject: [PATCH 1/3] test: add logs to see build args --- scripts/lake_build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/lake_build.sh b/scripts/lake_build.sh index dda56dc..dee9db7 100755 --- a/scripts/lake_build.sh +++ b/scripts/lake_build.sh @@ -21,4 +21,7 @@ handle_exit() { trap handle_exit EXIT +echo "Build args:" +echo "$BUILD_ARGS" + lake build "$BUILD_ARGS" From f1c846443cadebb9aa7ec3c438eaf460454c99d5 Mon Sep 17 00:00:00 2001 From: austinletson Date: Sat, 16 Nov 2024 16:27:37 -0500 Subject: [PATCH 2/3] fix: use `eval` for `lake build` command --- scripts/lake_build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/lake_build.sh b/scripts/lake_build.sh index dee9db7..cbeea99 100755 --- a/scripts/lake_build.sh +++ b/scripts/lake_build.sh @@ -24,4 +24,5 @@ trap handle_exit EXIT echo "Build args:" echo "$BUILD_ARGS" -lake build "$BUILD_ARGS" +# use eval to ensure build arguments are expanded +eval "lake build $BUILD_ARGS" From 4f67fe456476f901c539b5736bdc1360b20b5887 Mon Sep 17 00:00:00 2001 From: austinletson Date: Sat, 16 Nov 2024 16:34:40 -0500 Subject: [PATCH 3/3] test: remove logging commands --- scripts/lake_build.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/lake_build.sh b/scripts/lake_build.sh index cbeea99..6d5501a 100755 --- a/scripts/lake_build.sh +++ b/scripts/lake_build.sh @@ -21,8 +21,5 @@ handle_exit() { trap handle_exit EXIT -echo "Build args:" -echo "$BUILD_ARGS" - # use eval to ensure build arguments are expanded eval "lake build $BUILD_ARGS"