From cc425cc8b0f2fe42c1335f8c7c61442b792b43dc Mon Sep 17 00:00:00 2001 From: Jacob Hrbek Date: Tue, 9 Feb 2021 10:53:08 +0100 Subject: [PATCH] Makefile: Replace wrong indent --- Makefile.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index b1e2c36..adad04a 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -1,8 +1,8 @@ [tasks.install] description = "Installs dwm-rust in /usr/local/bin." script = [ - "cargo build --release", - "echo Installing in /usr/local/bin", + "cargo build --release", + "echo Installing in /usr/local/bin", "sudo mkdir -p /usr/local/bin", "sudo cp -f target/release/dwm-rust /usr/local/bin", "sudo chmod 755 /usr/local/bin/dwm-rust"