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