auto


Logs | Files | README | LICENSE | GitLab


1
commit f81728ae37be33fd936a8fd3a6289cf27263ebb5
2
Author: Connor Etherington <[email protected]>
3
Date:   Sat Mar 26 08:04:42 2022 +0200
4
5
    Update.
6
---
7
 AutoInstall.sh | 6 +++---
8
 1 file changed, 3 insertions(+), 3 deletions(-)
9
10
diff --git a/AutoInstall.sh b/AutoInstall.sh
11
index 8445f68..9c1c62b 100755
12
--- a/AutoInstall.sh
13
+++ b/AutoInstall.sh
14
@@ -229,8 +229,8 @@ pipinstall(){ \
15
 	yes | pip install "$1" ; }
16
 
17
 installationloop(){ \
18
-	([ -f "$pkgsfile" ] && cp "$pkgsfile" /tmp/pkgs.csv) || curl -Ls "$pkgsfile" | sed '/^#/d' > /tmp/pkgs.csv
19
-	total=$(wc -l < /tmp/pkgs.csv)
20
+	([ -f "$pkgsfile" ] && cp "$pkgsfile" /tmp/editions.csv) || curl -Ls "$pkgsfile" | sed '/^#/d' > /tmp/editions.csv
21
+	total=$(wc -l < /tmp/editions.csv)
22
 	aurinstalled=$(pacman -Qqm)
23
 	while IFS=, read -r tag program comment; do
24
 		n=$((n+1))
25
@@ -243,7 +243,7 @@ installationloop(){ \
26
 			"R") replacedir "$program" "$comment" ;;
27
 		     *) maininstall "$program" "$comment" ;;
28
 		esac
29
-	done < /tmp/pkgs.csv ; }
30
+	done < /tmp/editions.csv ; }
31
 
32
 placeconfigs() {
33
 	dialog --infobox " Downloading and installing config files..." 4 60