Skip to content
This repository has been archived by the owner on Dec 4, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of github.com:pcbsd/pcbsd
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Moore committed Sep 26, 2013
2 parents e747491 + bee06b9 commit 4a8388e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src-sh/de-info/de-profiles/gnome.profile
Expand Up @@ -17,7 +17,7 @@ installed() {
# Check via pc-metapkgmanager if it exists
which pc-metapkgmanager >/dev/null 2>/dev/null
if [ $? -eq 0 ] ; then
pc-metapkgmanager status GNOME | grep installed >/dev/null
pc-metapkgmanager status GNOME | grep "is installed" >/dev/null
if [ $? -eq 0 ] ; then
DE_INSTALLED=1
fi
Expand Down
2 changes: 1 addition & 1 deletion src-sh/de-info/de-profiles/kde.profile
Expand Up @@ -22,7 +22,7 @@ installed()
# Check via pc-metapkgmanager if it exists
which pc-metapkgmanager >/dev/null 2>/dev/null
if [ $? -eq 0 ] ; then
pc-metapkgmanager status KDE | grep installed >/dev/null
pc-metapkgmanager status KDE | grep "is installed" >/dev/null
if [ $? -eq 0 ] ; then
DE_INSTALLED=1
fi
Expand Down
2 changes: 1 addition & 1 deletion src-sh/de-info/de-profiles/lxde.profile
Expand Up @@ -18,7 +18,7 @@ installed()
# Check via pc-metapkgmanager if it exists
which pc-metapkgmanager >/dev/null 2>/dev/null
if [ $? -eq 0 ] ; then
pc-metapkgmanager status LXDE | grep installed >/dev/null
pc-metapkgmanager status LXDE | grep "is installed" >/dev/null
if [ $? -eq 0 ] ; then
DE_INSTALLED=1
fi
Expand Down
2 changes: 1 addition & 1 deletion src-sh/de-info/de-profiles/xfce.profile
Expand Up @@ -19,7 +19,7 @@ installed()
# Check via pc-metapkgmanager if it exists
which pc-metapkgmanager >/dev/null 2>/dev/null
if [ $? -eq 0 ] ; then
pc-metapkgmanager status XFCE | grep installed >/dev/null
pc-metapkgmanager status XFCE | grep "is installed">/dev/null
if [ $? -eq 0 ] ; then
DE_INSTALLED=1
fi
Expand Down

0 comments on commit 4a8388e

Please sign in to comment.