Skip to content

Commit

Permalink
chore: add msgbox when enabling maven remote install
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Wald committed Sep 21, 2023
1 parent 154cef6 commit f12c4be
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions cfg/configure.bbj
Original file line number Diff line number Diff line change
Expand Up @@ -1056,9 +1056,13 @@ class public configure extends BBDialog
rem */
method public void ENABLEMAVEN__ON_BUTTON_PUSH(BBjButtonPushEvent pEvent!)

cmdline$="bbj -tIO DWCJ/cli.bbj - enable_remote_install "
a=scall(cmdline$)

cmdline$="bbj -tIO DWCJ/cli.bbj - enable_remote_install "
a=scall(cmdline$)
if a=0 then
a=msgbox("Enabled http://localhost:8888/dwcj-install",0,"You're all set.")
else
a=msgbox("Something might have gone wrong enabling http://localhost:8888/dwcj-install",0,"Something might have gone wrong.")
fi
methodend

classend
Expand Down

0 comments on commit f12c4be

Please sign in to comment.