We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79c1ce1 commit 0a978bbCopy full SHA for 0a978bb
tasks/scripts/docker-build-image.sh
@@ -159,12 +159,8 @@ else
159
exit 1
160
fi
161
162
-# Default to dev-settings so local builds include test-only settings
163
-# (dummy_bool, dummy_int) that e2e tests depend on, matching CI behaviour.
164
-EXTRA_CARGO_FEATURES="${EXTRA_CARGO_FEATURES:-openshell-core/dev-settings}"
165
-
166
FEATURE_ARGS=()
167
-if [[ -n "${EXTRA_CARGO_FEATURES}" ]]; then
+if [[ -n "${EXTRA_CARGO_FEATURES:-}" ]]; then
168
FEATURE_ARGS=(--build-arg "EXTRA_CARGO_FEATURES=${EXTRA_CARGO_FEATURES}")
169
170
0 commit comments