diff options
author | EuAndreh <eu@euandre.org> | 2023-02-26 17:50:04 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-02-26 17:50:06 -0300 |
commit | 3f5cf9428273584a532178650a81675176393eec (patch) | |
tree | 7821feb72aed4c506fe99a16b8ddf2af9e403d04 | |
parent | etc/guix/system.scm: Stop using (xyz euandreh queue) unprefixed (diff) | |
download | dotfiles-3f5cf9428273584a532178650a81675176393eec.tar.gz dotfiles-3f5cf9428273584a532178650a81675176393eec.tar.xz |
bin/upgrade: Fix call to timeout
The error message was:
timeout: impossible d'exécuter la commande « -- »: Aucun fichier ou dossier de ce type
-rwxr-xr-x | bin/upgrade | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/upgrade b/bin/upgrade index daae53a..298ac31 100755 --- a/bin/upgrade +++ b/bin/upgrade @@ -72,7 +72,7 @@ fi TWO_HOURS='7200' -timeout "$TWO_HOURS" -- +timeout "$TWO_HOURS" \ guix home -v3 reconfigure ~/.guix-home/configuration.scm if [ -e /etc/nixos/configuration.nix ]; then |