This is an automated email from the ASF dual-hosted git repository. hainenber pushed a commit to branch build/fix-accidental-cmd-substitution in repository https://gitbox.apache.org/repos/asf/superset.git
commit 4df7c577ccc4eee62af9ebf17f545056c1012d01 Author: hainenber <[email protected]> AuthorDate: Wed Feb 4 20:58:30 2026 +0700 fix(docker): remove accidental command substitutions when building FE in dev mode Signed-off-by: hainenber <[email protected]> --- docker/docker-frontend.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-frontend.sh b/docker/docker-frontend.sh index d086908de66..7a1cb15ae75 100755 --- a/docker/docker-frontend.sh +++ b/docker/docker-frontend.sh @@ -28,11 +28,11 @@ if [ "$BUILD_SUPERSET_FRONTEND_IN_DOCKER" = "true" ]; then cd /app/superset-frontend if [ "$NPM_RUN_PRUNE" = "true" ]; then - echo "Running `npm run prune`" + echo "Running \"npm run prune\"" npm run prune fi - echo "Running `npm install`" + echo "Running \"npm install\"" npm install echo "Start webpack dev server"
