From ab235f583f753f45c8ef7db7f480f95ac868721e Mon Sep 17 00:00:00 2001 From: COW_ILLUMINATI Date: Tue, 28 May 2024 14:33:38 -0400 Subject: [PATCH] Fixed oversight relating to root --- src/cowtool.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cowtool.cpp b/src/cowtool.cpp index 90db16f..e87c18a 100644 --- a/src/cowtool.cpp +++ b/src/cowtool.cpp @@ -42,11 +42,6 @@ bool ask(std::string prompt) { int main(int argc, char* argv[]) { - if( !getuid() ) { - std::cout << "Must be root!" << std::endl; - return 1; - } - if ( argc == 1 ) { std::cout << " Cowtool 0.0 :" << std::endl; std::cout << " - cowtool lick < name > < editor > : Create/edit a package script" << std::endl;