Skip to content

Commit f96e90b

Browse files
authored
fix(docker): remove accidental command substitutions when building FE in dev mode (#37670)
1 parent b464979 commit f96e90b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/docker-frontend.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ if [ "$BUILD_SUPERSET_FRONTEND_IN_DOCKER" = "true" ]; then
2828
cd /app/superset-frontend
2929

3030
if [ "$NPM_RUN_PRUNE" = "true" ]; then
31-
echo "Running `npm run prune`"
31+
echo "Running \"npm run prune\""
3232
npm run prune
3333
fi
3434

35-
echo "Running `npm install`"
35+
echo "Running \"npm install\""
3636
npm install
3737

3838
echo "Start webpack dev server"

0 commit comments

Comments
 (0)