Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use /usr/bin/env for binaries #133

Merged
merged 1 commit into from Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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