Skip to content

Commit

Permalink
Merge pull request #133 from SuperSandro2000/fix-paths
Browse files Browse the repository at this point in the history
Use /usr/bin/env for binaries
  • Loading branch information
quexten committed Mar 6, 2024
2 parents bc1a94b + cdaaaf8 commit cb66b2a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion browserbiometrics/manifests.go
Expand Up @@ -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
if flatpak list | grep -q "com.quexten.Goldwarden"; then
Expand Down
2 changes: 1 addition & 1 deletion gui/src/gui/settings.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
import sys
import gi
gi.require_version('Gtk', '4.0')
Expand Down
2 changes: 1 addition & 1 deletion gui/src/linux/main.py
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
import time
import subprocess
from tendo import singleton
Expand Down

0 comments on commit cb66b2a

Please sign in to comment.