wrapper: switch sh to bash (Void fix)

This commit is contained in:
shadeyg56 2023-10-11 17:16:51 -05:00
parent 64b11ab089
commit 0f14a6a252
3 changed files with 3 additions and 3 deletions

View File

@ -149,7 +149,7 @@ def app_version():
# snap package
if os.getenv("PKG_MARKER") == "SNAP":
print(getoutput("echo \(Snap\) $SNAP_VERSION"))
print(getoutput(r"echo \(Snap\) $SNAP_VERSION"))
# aur package
elif dist_name in ["arch", "manjaro", "garuda"]:
aur_pkg_check = call("pacman -Qs auto-cpufreq > /dev/null", shell=True)

View File

@ -1,3 +1,3 @@
#!/bin/sh
#!/bin/bash
export PATH="$PATH:/usr/local/bin"
exec /usr/local/bin/auto-cpufreq --daemon

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Wrapper script around auto-cpufreq using the python virtual environment
set -eu