From f613bd1207293ffb3c4883b8ad4bb7cd43a6c3dc Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Thu, 11 Jun 2020 14:01:21 +0200 Subject: [PATCH] local/bin/homeinit: Fix manifest installation. --- .local/bin/homeinit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.local/bin/homeinit b/.local/bin/homeinit index cb499f0f..c08fb4c2 100755 --- a/.local/bin/homeinit +++ b/.local/bin/homeinit @@ -219,8 +219,6 @@ guix_install_profile() { local manifest manifest=$HOME/.package-lists/guix-$i-manifest.scm if [ -f "$manifest" ]; then - warning "Manifest $manifest not found." - else if [ "$i" = "default" ]; then ~/.config/guix/current/bin/guix package --manifest="$manifest" --keep-failed --substitute-urls="$SUBSTITUTE_URLS" . ~/.guix-profile/etc/profile @@ -232,6 +230,8 @@ guix_install_profile() { . "$profile"/etc/profile fi fi + else + warning "Manifest '$manifest' not found." fi }