diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-30 19:45:31 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-30 19:45:31 +0200 |
commit | 8be7ee877f8b34979a5fc43ba9040a058422a356 (patch) | |
tree | 6b7a070500b6905cdbf2b4d9bb9846d36efbbae6 /server | |
parent | f717628e0cabd980a92df926c35e162df0f8ad2d (diff) | |
download | hurrycurry-8be7ee877f8b34979a5fc43ba9040a058422a356.tar hurrycurry-8be7ee877f8b34979a5fc43ba9040a058422a356.tar.bz2 hurrycurry-8be7ee877f8b34979a5fc43ba9040a058422a356.tar.zst |
remove +nightly cargo rustup flag
Diffstat (limited to 'server')
-rw-r--r-- | server/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/makefile b/server/makefile index 9f40d4b0..b80ff3b8 100644 --- a/server/makefile +++ b/server/makefile @@ -22,7 +22,7 @@ all: $(SERVER) $(REPLAYTOOL) clean: $(SERVER): $(shell find protocol src -type f) - cargo +nightly build --release + cargo build --release $(REPLAYTOOL): $(shell find protocol replaytool -type f) - { cd replaytool; cargo +nightly build --release; } + { cd replaytool; cargo build --release; } |