This is an automated email from the ASF dual-hosted git repository.
hainenber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new f96e90b9794 fix(docker): remove accidental command substitutions when
building FE in dev mode (#37670)
f96e90b9794 is described below
commit f96e90b97949d393b6d7099c3c1caf71b2150688
Author: Đỗ Trọng Hải <[email protected]>
AuthorDate: Wed Feb 4 23:53:20 2026 +0700
fix(docker): remove accidental command substitutions when building FE in
dev mode (#37670)
---
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"