From: MatthieuCoder Date: Mon, 16 Jan 2023 10:04:17 +0000 (+0400) Subject: remove tree command X-Git-Tag: v0.1.1~6 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=277f38bbe89e4db57b73a4e28bf1be2f5c50ce27;p=matthieu%2Fnova.git remove tree command --- 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