why did I write a for loop for that

This commit is contained in:
Lilian Jónsdóttir 2023-11-14 23:34:56 -08:00
parent ff13b1fd32
commit 8877df87df
2 changed files with 2 additions and 6 deletions

View file

@ -7,9 +7,7 @@ Void linux package templates I've created that probably wouldn't get accepted in
## Install ## Install
Run `install.sh` or do it manually like Run `install.sh` or do it manually like
```sh ```sh
for item in srcpkgs/*; do cp -vr srcpkgs/* $HOME/void-packages/srcpkgs
cp -vr $item $HOME/void-packages/srcpkgs
done
``` ```
## Included packages ## Included packages

View file

@ -1,4 +1,2 @@
#!/bin/sh #!/bin/sh
for item in srcpkgs/*; do cp -vr srcpkgs/* $HOME/void-packages/srcpkgs
cp -vr $item $HOME/void-packages/srcpkgs
done