From 8877df87dfcc91d5a740116cd0506a684ec85d9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lilian=20J=C3=B3nsd=C3=B3ttir?= Date: Tue, 14 Nov 2023 23:34:56 -0800 Subject: [PATCH] why did I write a for loop for that --- README.md | 4 +--- install.sh | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cc09a0c..1cd91db 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,7 @@ Void linux package templates I've created that probably wouldn't get accepted in ## Install Run `install.sh` or do it manually like ```sh -for item in srcpkgs/*; do - cp -vr $item $HOME/void-packages/srcpkgs -done +cp -vr srcpkgs/* $HOME/void-packages/srcpkgs ``` ## Included packages diff --git a/install.sh b/install.sh index a080646..185d729 100644 --- a/install.sh +++ b/install.sh @@ -1,4 +1,2 @@ #!/bin/sh -for item in srcpkgs/*; do - cp -vr $item $HOME/void-packages/srcpkgs -done +cp -vr srcpkgs/* $HOME/void-packages/srcpkgs