From 33625610c6afa7b54f5048fc2812f6ad885ab400 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 21 Jun 2023 19:57:48 -0700 Subject: [PATCH] app/vmui/Makefile: consistently use tabs instead of spaces in multi-line Makefile rules --- app/vmui/Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/vmui/Makefile b/app/vmui/Makefile index 15293d9e5c..39a65358ff 100644 --- a/app/vmui/Makefile +++ b/app/vmui/Makefile @@ -5,19 +5,19 @@ vmui-package-base-image: vmui-build: vmui-package-base-image docker run --rm \ - --user $(shell id -u):$(shell id -g) \ - --mount type=bind,src="$(shell pwd)/app/vmui",dst=/build \ - -w /build/packages/vmui \ - --entrypoint=/bin/bash \ - vmui-builder-image -c "npm install && npm run build" + --user $(shell id -u):$(shell id -g) \ + --mount type=bind,src="$(shell pwd)/app/vmui",dst=/build \ + -w /build/packages/vmui \ + --entrypoint=/bin/bash \ + vmui-builder-image -c "npm install && npm run build" vmui-logs-build: vmui-package-base-image docker run --rm \ - --user $(shell id -u):$(shell id -g) \ - --mount type=bind,src="$(shell pwd)/app/vmui",dst=/build \ - -w /build/packages/vmui \ - --entrypoint=/bin/bash \ - vmui-builder-image -c "npm install && npm run build:logs" + --user $(shell id -u):$(shell id -g) \ + --mount type=bind,src="$(shell pwd)/app/vmui",dst=/build \ + -w /build/packages/vmui \ + --entrypoint=/bin/bash \ + vmui-builder-image -c "npm install && npm run build:logs" vmui-release: vmui-build docker build -t ${DOCKER_NAMESPACE}/vmui:latest -f app/vmui/Dockerfile-web ./app/vmui/packages/vmui