Remove unneded sed

This commit is contained in:
Santiago Lo Coco 2022-01-20 00:07:07 -03:00
parent 95cf5b297c
commit 7f5d913b3c
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ loopThroughFiles() {
done
if [ -d "$DOTFILES/other" ]; then
filesOutput=$(find -H "$DOTFILES/other" | sed -n 2~1p | awk '{ sub(/.*dotfiles\/other\//, ""); print }')
filesOutput=$(find -H "$DOTFILES/other" -mindepth 1 | awk '{ sub(/.*dotfiles\/other\//, ""); print }')
files=""; for item in $filesOutput; do
files="${files}$item\n"
done