From 16c38b3d9bd6a2e9758b543443de7a5afe022128 Mon Sep 17 00:00:00 2001 From: jasiosasio Date: Mon, 26 Jul 2021 21:43:01 +0200 Subject: [PATCH] a new readme shit fukcing kill me i have nothing better to do --- README.md | 8 ++++---- src/mods/install.rs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fc802c7..eb08e68 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Discord

Amethyst is a fast, efficient and lightweight aur helper and pacman wrapper. -Made for crystalux, compatible with any arch-based linux distribution. NOW IN RUST!

+Made for crystalux, compatible with any arch-based linux distribution.

![](screenshot.png) @@ -31,11 +31,11 @@ Made for crystalux, compatible with any arch-based linux distribution. NOW IN ## How to build: -for release +For release: - `make clean release` -for general debug/test +For general debug/test: - `make clean debug` -clean all builddirs +Clean all build directories: - `make clean` diff --git a/src/mods/install.rs b/src/mods/install.rs index f823980..8e2358f 100644 --- a/src/mods/install.rs +++ b/src/mods/install.rs @@ -1,6 +1,6 @@ use runas::Command; pub fn install(pkg: &str) { - let errstr = format!("Something went wrong"); + let errstr = format!("Oops.. Something went wrong!"); Command::new("pacman").arg("-S").arg(&pkg).status().expect(&errstr); }