summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-16 14:04:17 +0400
committerMatthieuCoder <matthieu@matthieu-dev.xyz>2023-01-16 14:04:17 +0400
commit277f38bbe89e4db57b73a4e28bf1be2f5c50ce27 (patch)
treeb46cf9e41a1e0870f9320980b7c1516e19308964
parent6d229b23d831c5514497ffabc971bb8de78144c8 (diff)
remove tree command
-rw-r--r--Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index b9498d3..130f9d2 100644
--- a/Makefile
+++ b/Makefile
@@ -13,14 +13,12 @@ all:
# Builds rust
@echo "Building rust project"
cargo build --release
- @cp target/release/liball_in_one.a build/lib
- @cp target/release/cache build/bin
- @cp target/release/gateway build/bin
- @cp target/release/ratelimit build/bin
- @cp target/release/rest build/bin
- @cp target/release/webhook build/bin
-
- tree build/
+ @cp target/release/liball_in_one.a build/lib/
+ @cp target/release/cache build/bin/
+ @cp target/release/gateway build/bin/
+ @cp target/release/ratelimit build/bin/
+ @cp target/release/rest build/bin/
+ @cp target/release/webhook build/bin/
# Builds go
go build -a -ldflags '-s' -o build/bin/nova cmd/nova/nova.go