Skip to content

Commit c6fc98f

Browse files
committed
Final changes before release v3.8
Change a condition in the flatpaks_installer.py script
1 parent 6e3f205 commit c6fc98f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/flatpaks_installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
print("installing the Flatpak apps on the system")
3535

3636
# If the Flathub repository in user installation doesn't exist, add it
37-
if os.path.getsize(f"{dest_dir}/installed_user_flatpaks.sh") < 5:
37+
if os.path.getsize(f"{dest_dir}/installed_user_flatpaks.sh") > 5:
3838
os.system("flatpak remote-add --user --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo")
3939
# Install Flatpak apps from list
4040
installed_flatpaks_files = [f'{dest_dir}/installed_flatpaks.sh', f'{dest_dir}/installed_user_flatpaks.sh']

0 commit comments

Comments
 (0)