Skip to content

Commit

Permalink
chore: disable shellcheck that breaks android compatibility (justchok…
Browse files Browse the repository at this point in the history
…ingaround#222)

* revert shellcheck

* fix shellcheck error fr this time

* bump version
  • Loading branch information
Tigermouthbear authored Aug 20, 2024
1 parent 6a3b899 commit d8a2b73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lobster.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env sh

LOBSTER_VERSION="4.3.1"
LOBSTER_VERSION="4.3.2"

### General Variables ###
config_file="$HOME/.config/lobster/lobster_config.sh"
Expand Down Expand Up @@ -765,7 +765,7 @@ EOF
if [ "$player" = "mpv" ] && ! command -v mpv >/dev/null; then
if command -v mpv.exe >/dev/null; then
player="mpv.exe"
elif "$(uname -a)" | grep -q "ndroid" 2>/dev/null; then
elif uname -a | grep -q "ndroid" 2>/dev/null; then
player="mpv_android"
else
dep_ch mpv.exe
Expand Down

0 comments on commit d8a2b73

Please sign in to comment.