Merge pull request #133 from SuperSandro2000/fix-paths

Use /usr/bin/env for binaries
This commit is contained in:
Bernd Schoolmann 2024-03-07 00:34:09 +01:00 committed by GitHub
commit cb66b2a9be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -22,7 +22,7 @@ const templateChrome = `{
] ]
}` }`
const proxyScript = `#!/bin/bash const proxyScript = `#!/usr/bin/env bash
# Check if the "com.quexten.Goldwarden" Flatpak is installed # Check if the "com.quexten.Goldwarden" Flatpak is installed
if flatpak list | grep -q "com.quexten.Goldwarden"; then if flatpak list | grep -q "com.quexten.Goldwarden"; then

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
import sys import sys
import gi import gi
gi.require_version('Gtk', '4.0') gi.require_version('Gtk', '4.0')

View file

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/env python3
import time import time
import subprocess import subprocess
from tendo import singleton from tendo import singleton