diff options
author | Christian Hesse <mail@eworm.de> | 2013-10-06 20:28:55 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-10-06 20:28:55 +0200 |
commit | e177a5b8179bf5e652b67c222710470b6acf214e (patch) | |
tree | 603e63e9fbb314ba8af07be3e762c5b5c5e37bde | |
parent | fbd4c73cfb5a21261c9df1a0f93d2e2f9db22802 (diff) | |
download | mkinitcpio-archlogo-e177a5b8179bf5e652b67c222710470b6acf214e.tar.gz mkinitcpio-archlogo-e177a5b8179bf5e652b67c222710470b6acf214e.tar.zst |
fix condition
-rw-r--r-- | install/archlogo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/archlogo b/install/archlogo index f16c9b1..a84e32a 100644 --- a/install/archlogo +++ b/install/archlogo @@ -4,7 +4,7 @@ build() { source /etc/archlogo.conf add_file /etc/archlogo.conf add_file "/usr/share/archlogo/${ARCHLOGO}" - if [ add_systemd_unit archlogo.service 2>/dev/null ]; then + if add_systemd_unit archlogo.service 2>/dev/null; then add_symlink "/usr/lib/systemd/system/sysinit.target.wants/archlogo.service" "../archlogo.service" else add_runscript |