diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-07-29 13:08:17 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-07-29 13:08:17 +0000 |
commit | 0d82fe957279a0f21a922f3340a4a574b75014d7 (patch) | |
tree | 5929bb2ee4c41e5bb35ea70dd25e8d31d1fad4e5 /scripts | |
parent | f6cb28e6cc4ba5f840d9a14fb96a007cb5549e73 (diff) | |
download | bootsplash-0d82fe957279a0f21a922f3340a4a574b75014d7.tar bootsplash-0d82fe957279a0f21a922f3340a4a574b75014d7.tar.gz bootsplash-0d82fe957279a0f21a922f3340a4a574b75014d7.tar.bz2 bootsplash-0d82fe957279a0f21a922f3340a4a574b75014d7.tar.xz bootsplash-0d82fe957279a0f21a922f3340a4a574b75014d7.zip |
check harder if splash is disabled
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/splash.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/splash.sh b/scripts/splash.sh index 27787bc..0ef4a93 100644 --- a/scripts/splash.sh +++ b/scripts/splash.sh @@ -75,7 +75,7 @@ update_progress() { } # assertions -test -z "$splash_rc" && exit 0 +[ -z "$splash_rc" -o "$splash_rc" = "no" ] && exit 0 if [[ -z $res ]]; then res=`fbresolution` |