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
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

View file

@ -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