mirror of
https://github.com/JonasunderscoreJones/ArchSystemSetup.git
synced 2025-10-22 19:19:20 +02:00
fixed flatpak installation
This commit is contained in:
parent
6e020a502b
commit
dd11de082c
1 changed files with 4 additions and 1 deletions
|
@ -276,7 +276,10 @@ install_flatpaks() {
|
||||||
download_file $FLATPAK_LIST_URL "flatpaks.txt"
|
download_file $FLATPAK_LIST_URL "flatpaks.txt"
|
||||||
|
|
||||||
# Install the flatpaks
|
# Install the flatpaks
|
||||||
flatpak install --noninteractive --assumeyes - < flatpaks.txt
|
while read -r flatpak_id; do
|
||||||
|
[[ -n "$flatpak_id" ]] && flatpak install --noninteractive --assumeyes "$flatpak_id"
|
||||||
|
done < flatpaks.txt
|
||||||
|
#flatpak install --noninteractive --assumeyes < flatpaks.txt
|
||||||
|
|
||||||
# Remove the flatpaks file
|
# Remove the flatpaks file
|
||||||
rm flatpaks.txt
|
rm flatpaks.txt
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue