Skip to content

Commit

Permalink
fix: 🐛 remove unset
Browse files Browse the repository at this point in the history
  • Loading branch information
monlor committed Oct 15, 2024
1 parent 89c1059 commit b570f46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion media-unlock/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:latest

LABEL MAINTAINER [email protected]
LABEL VERSION 2.0.1
LABEL VERSION 2.0.2

RUN apt update && apt install dnsmasq bash curl -y && apt clean

Expand Down
6 changes: 3 additions & 3 deletions media-unlock/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ switch_media_ip() {
return 0
fi
done
unset current_media_ip
current_media_ip=""
echo "media: No available IP found."
}

Expand All @@ -52,7 +52,7 @@ switch_openai_ip() {
return 0
fi
done
unset current_openai_ip
current_openai_ip=""
echo "openai: No available IP found."
}

Expand All @@ -65,7 +65,7 @@ switch_anthropic_ip() {
return 0
fi
done
unset current_anthropic_ip
current_anthropic_ip=""
echo "anthropic: No available IP found."
}

Expand Down

0 comments on commit b570f46

Please sign in to comment.