From 6bd8051c78f075019311d800c5c34175fd931844 Mon Sep 17 00:00:00 2001 From: Malted Date: Sat, 10 Jun 2023 16:57:42 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Add=20cargo=20release=20aliases?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the alias field with bb and rr defined as release aliases --- .cargo/config.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 956cc38..302ce48 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,6 @@ [target.'cfg(unix)'] runner = "sudo -E" + +[alias] # command aliases +rr = "run --release" +bb = "build --release"