9 lines
329 B
Python
9 lines
329 B
Python
|
#!/usr/bin/python3
|
||
|
import os
|
||
|
print("Creating Flatpak package...")
|
||
|
file = open("sweecrypt-gtk.py").read().split("\n")
|
||
|
file[3] = 'UI_FILE = "/app/opt/sweecrypt-gtk.ui"'
|
||
|
file.insert(0, "#!/usr/bin/env python3")
|
||
|
file = "\n".join(file)
|
||
|
open("sweecrypt-gtk-flatpak.py", "w").write(file)
|
||
|
os.system("chmod 1777 sweecrypt-gtk-flatpak.py")
|