diff options
author | Alex Auvolat <alex@adnab.me> | 2021-04-05 19:55:53 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-04-27 16:37:08 +0200 |
commit | 9ced9f78dcc3894b3c2f13b8a95653f990278f03 (patch) | |
tree | 00b5180edcfab392eef203f594edb1332ccfce5d /Makefile | |
parent | 3a449badb125b4f5bf0497639745a583bc949da2 (diff) | |
download | garage-9ced9f78dcc3894b3c2f13b8a95653f990278f03.tar.gz garage-9ced9f78dcc3894b3c2f13b8a95653f990278f03.zip |
Improve bootstraping: do it regularly; persist peer list
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ BIN=target/release/garage DOCKER=lxpz/garage_amd64 all: - clear; RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=x86-64 -C target-feature=+sse2" cargo build --no-default-features + clear; cargo build $(BIN): RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=x86-64 -C target-feature=+sse2" cargo build --release --no-default-features |