diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-06-30 09:50:17 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-06-30 09:50:17 +0000 |
commit | eb8c03b34c7bba84a6bf1cc3e5acf07df810ac2b (patch) | |
tree | 9b07f1f9fa181c3f98606bcd32d2a30d5c72c566 | |
parent | d51d9024807905bcb5cbef6be63811125957e1c1 (diff) | |
download | bootsplash-eb8c03b34c7bba84a6bf1cc3e5acf07df810ac2b.tar bootsplash-eb8c03b34c7bba84a6bf1cc3e5acf07df810ac2b.tar.gz bootsplash-eb8c03b34c7bba84a6bf1cc3e5acf07df810ac2b.tar.bz2 bootsplash-eb8c03b34c7bba84a6bf1cc3e5acf07df810ac2b.tar.xz bootsplash-eb8c03b34c7bba84a6bf1cc3e5acf07df810ac2b.zip |
fix bootloader-config path
-rwxr-xr-x | scripts/switch-themes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/switch-themes b/scripts/switch-themes index 22676e4..99d3368 100755 --- a/scripts/switch-themes +++ b/scripts/switch-themes @@ -109,8 +109,8 @@ function switch_theme () { } function update_boot () { - if [[ -x /usr/bin/bootloader-config ]]; then - /usr/bin/bootloader-config --action update-splash --kernel-version $(uname -r) + if [[ -x /usr/sbin/bootloader-config ]]; then + /usr/sbin/bootloader-config --action update-splash --kernel-version $(uname -r) fi } |