From 35113634f668f3ff945807a3f392c3eb526366e0 Mon Sep 17 00:00:00 2001 From: Stefan Benten Date: Fri, 7 Jan 2022 20:36:43 +0100 Subject: [PATCH] Makefile: do not remove files to keep state clean Currently the admin UI Makefile target deletes the .gitignore file. While it being unnecessary to my findings it also causes and dirty git repository, since files have been modified. Removing this command lets the build process continue to work as expected and since we are not commiting any files or assets later on this should be fine. Change-Id: Ibc1b7a8e456394ca19ea39dd8389c2ec03f066fc --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index e0a967dce..f64970695 100644 --- a/Makefile +++ b/Makefile @@ -179,8 +179,6 @@ multinode-console: .PHONY: satellite-admin-ui satellite-admin-ui: - # remove the file that keep the assets directory for not breaking in development due to the `go:embed` directive - rm -rf satellite/admin/ui/assets/.gitignore # install npm dependencies for being embedded by Go embed. docker run --rm -i \ --mount type=bind,src="${PWD}",dst=/go/src/storj.io/storj \