Skip to content

Commit

Permalink
Use NODE instead of VNODE on Void.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kharacternyk committed Apr 19, 2020
1 parent c193a49 commit 1561e87
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pacwall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ generate_graph_xbps() {
echo "\"$package\" [color=\"$ENODE\"]" >> pkgcolors
DPKGS=$(xbps-query -x $package | sed -E -e 's/>?=.*//g' | tr '\n' ' ')
for dependency in $DPKGS; do
echo "\"$dependency\" [color=\"$NODE\"]" >> pkgcolors
echo "\"$package\" -> \"$dependency\";" >> stripped/$package
done
done
Expand All @@ -132,6 +133,7 @@ generate_graph_xbps() {
echo "\"$orphan\" [color=\"$ONODE\"]" >> pkgcolors
ODPKGS=$(xbps-query -x $orphan | sed -E -e 's/>?=.*//g' | tr '\n' ' ')
for odependency in $ODPKGS; do
echo "\"$odependency\" [color=\"$NODE\"]" >> pkgcolors
echo "\"$orphan\" -> \"$odependency\";" >> stripped/$orphan
done
done
Expand Down

0 comments on commit 1561e87

Please sign in to comment.