We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d29699 commit cfa86baCopy full SHA for cfa86ba
install.sh
@@ -7,7 +7,7 @@ then
7
sudo pacman -S --noconfirm python-nautilus
8
elif type "apt-get" > /dev/null 2>&1
9
then
10
- installed=`apt list --installed 2> /dev/null | grep python-nautilus`
+ installed=`apt list --installed python-nautilus -qq 2> /dev/null`
11
if [ -z "$installed" ]
12
13
sudo apt-get install -y python-nautilus
@@ -16,7 +16,7 @@ then
16
fi
17
elif type "dnf" > /dev/null 2>&1
18
19
- installed=`dnf list installed 2> /dev/null | grep nautilus-python`
+ installed=`dnf list --installed nautilus-python 2> /dev/null`
20
21
22
sudo dnf install -y nautilus-python
0 commit comments