From 88f8b7a96f1770daa0e3e835dece53999c9287b9 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Tue, 26 Dec 2023 00:02:14 -0500 Subject: [PATCH] rekahsoft-gnu: Fix spaceship-prompt after update --- rekahsoft-gnu/packages/shellutils.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rekahsoft-gnu/packages/shellutils.scm b/rekahsoft-gnu/packages/shellutils.scm index 06a9476..6a73dd4 100644 --- a/rekahsoft-gnu/packages/shellutils.scm +++ b/rekahsoft-gnu/packages/shellutils.scm @@ -138,9 +138,9 @@ files, command history, processes, hostnames, bookmarks, git commits, etc..") (string-append install-path "/" dir))) '("lib" "sections")) - (copy-file "spaceship.zsh" - (string-append install-path - "/spaceship.zsh")) + (for-each (lambda (f) + (copy-file f (string-append install-path "/" f))) + '("spaceship.zsh" "async.zsh")) (symlink (string-append install-path "/spaceship.zsh") (string-append func-path "/prompt_spaceship_setup"))))))))