wrapper: switch sh to bash (Void fix)
This commit is contained in:
parent
64b11ab089
commit
0f14a6a252
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
export PATH="$PATH:/usr/local/bin"
|
||||
exec /usr/local/bin/auto-cpufreq --daemon
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
# Wrapper script around auto-cpufreq using the python virtual environment
|
||||
|
||||
set -eu
|
||||
|
|
Loading…
Reference in New Issue