Procházet zdrojové kódy

list no extra space if empty

tags/v3.1
Luke Smith před 5 roky
rodič
revize
f9bc254abd
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4C50B54A911F6252
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      bin/mw

+ 1
- 1
bin/mw Zobrazit soubor

@@ -13,7 +13,7 @@ mwconfig="$muttdir/mutt-wizard.muttrc"
muttrc="$muttdir/muttrc"

getaccounts() { accounts="$(find "$accdir" -type f | grep -o "[0-9]-.*.muttrc" | sed "s/-/: /g;s/\..*//" | sort -n)" ;}
list() { getaccounts && echo "$accounts" ;}
list() { getaccounts && [ -n "$accounts" ] && echo "$accounts" ;}

getprofiles() { \
unset msmtp_header msmtp_profile mutt_profile mbsync_profile


Načítá se…
Zrušit
Uložit