Skip to content

Commit

Permalink
Allow updates in docker
Browse files Browse the repository at this point in the history
While we can't update the runtime files are part of our docker containers,
nothing prevents someone from using a java container with Wylx mounted and
updating that mounted volume
  • Loading branch information
1Revenger1 committed Sep 21, 2024
1 parent 8ccdaa9 commit 232ace3
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ public void runCommandThread(CommandContext ctx) {
MessageReceivedEvent event = ctx.event();
String[] args = ctx.args();

if (EnvUtils.isRunningInsideDocker()) {
event.getChannel().sendMessage("Unable to update inside docker!").queue();
return;
}

if (args.length == 2 && Wylx.getInstance().getWylxConfig().release) {
event.getChannel().sendMessage("Unable to use different branch on RELEASE").queue();
return;
Expand Down

0 comments on commit 232ace3

Please sign in to comment.