progs lines can be commented

This commit is contained in:
Luke Smith
2018-12-20 11:54:26 -05:00
parent 2a59b88834
commit 91ba14840f
3 changed files with 3 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ aurinstall() { \
}
installationloop() { \
([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" > /tmp/progs.csv
([ -f "$progsfile" ] && cp "$progsfile" /tmp/progs.csv) || curl -Ls "$progsfile" | sed '/^#/d' > /tmp/progs.csv
total=$(wc -l < /tmp/progs.csv)
aurinstalled=$(pacman -Qm | awk '{print $1}')
while IFS=, read -r tag program comment; do