Skip to content

Commit

Permalink
[meta] filter out spurious messages from stow
Browse files Browse the repository at this point in the history
  • Loading branch information
justinnhli committed Apr 29, 2023
1 parent 6fdf38b commit a806134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stow-script
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

find . -mindepth 1 -maxdepth 1 -type d -name '[a-z]*' | sed 's#^./##' | while read package; do
stow --verbose --restow --target "$HOME" "$package"
stow --verbose --restow --target "$HOME" "$package" 2> >(grep -v 'BUG in find_stowed_path? Absolute/relative mismatch' 1>&2)
done

0 comments on commit a806134

Please sign in to comment.