You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 15, 2021. It is now read-only.
Ahh... the problem seams to be the pre/post render use ProcessBuilder, which cant be called with
(if setting is = '/bin/bash /home/..../scriptname.sh')
ProcessBuilder('/bin/bash /home/..../scriptname.sh', fname.getAbsolutePath()).start().waitFor();
it shoule be
ProcessBuilder('/bin/bash', '/home/..../scriptname.sh', fname.getAbsolutePath()).start().waitFor();
so - maybe someone can integrate optional parameters in the settings which will be passed to the procces. this will make pre/post script development much easier.
Hi
We've got Dynmap v2.2-1118 running here, and tried to get the postupdatecommand script working.
Our testscript:
!/bin/bash
echo "postupdatecommand: $@" >> ./test.log
exit 0
but it will never be called
Is that a known issue?
The text was updated successfully, but these errors were encountered: