Skip to content

Commit afa16d2

Browse files
committed
resolve line break error in Makefile and supress command outputs
1 parent 5ac53a5 commit afa16d2

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Makefile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ install_deps:
1919
if [[ "$(shell uname)" == "Darwin" ]]; then cd ./lib/macos_amd64 && ./install_deps && cd .. ; else cd ./lib/linux_x86_64 && ./install_deps && cd ..; fi
2020

2121
build:
22-
echo "⚒️ Initiating gitconvex build"
23-
echo "🗑️ Cleaning up old directories"
24-
rm -rf ui/ dist/ build/
25-
echo "⏬ Cloning gitconvex react repo"
26-
git clone -q https://github.com/neel1996/gitconvex-ui.git ui/ && \
22+
@echo "⚒️ Initiating gitconvex build"
23+
@echo "🗑️ Cleaning up old directories"
24+
@rm -rf ui/ dist/ build/
25+
@echo "⏬ Cloning gitconvex react repo"
26+
@git clone -q https://github.com/neel1996/gitconvex-ui.git ui/ && \
2727
cd ui && \
2828
echo "⏳ Installing UI dependencies..." && \
2929
npm install --silent && \
@@ -43,11 +43,11 @@ build:
4343
go build -v -a -o ./dist && \
4444
echo "Gitconvex build completed!" && \
4545
mv ./dist/gitconvex-server ./dist/gitconvex
46-
echo "Installing libs"
46+
@echo "Installing libs"
4747
$(MAKE) install_deps
48-
echo "✅ Gitconvex Build Completed successfully!"
49-
echo "📬 Use ./dist/gitconvex to start Gitconvex on port 9001"
50-
echo "📬 Try ./dist/gitconvex --port PORT_NUMBER to run gitconvex on the desired port"
48+
@echo "✅ Gitconvex Build Completed successfully!"
49+
@echo "📬 Use ./dist/gitconvex to start Gitconvex on port 9001"
50+
@echo "📬 Try ./dist/gitconvex --port PORT_NUMBER to run gitconvex on the desired port"
5151
test:
5252
go test -tags static -v ./...
5353
start:

0 commit comments

Comments
 (0)