diff options
author | Ignacio Vazquez-Abrams <ivazqueznet@gmail.com> | 2008-11-12 11:29:47 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-11-12 11:35:20 -0500 |
commit | 0fb1173b1947f8fdd3d1069d14e383c6c6796293 (patch) | |
tree | cca5e99835275894552b9398c3fde01e8113ea67 | |
parent | c6cf36ae4696da014af63774e87450a49a22b72d (diff) | |
download | anaconda-0fb1173b1947f8fdd3d1069d14e383c6c6796293.tar.gz anaconda-0fb1173b1947f8fdd3d1069d14e383c6c6796293.tar.xz anaconda-0fb1173b1947f8fdd3d1069d14e383c6c6796293.zip |
Fix shell syntax error (#471090)
-rwxr-xr-x | liveinst/liveinst.xinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/liveinst/liveinst.xinit b/liveinst/liveinst.xinit index afecae3b4..5913f230d 100755 --- a/liveinst/liveinst.xinit +++ b/liveinst/liveinst.xinit @@ -2,7 +2,7 @@ # Set up a launcher on the desktop for the live installer if we're on # a live CD -if [ \`grep -c Geode /proc/cpuinfo\` -ne 0 ]; then +if grep -q Geode /proc/cpuinfo ; then exit 0 fi |