File tree 2 files changed +6
-2
lines changed
src/main/java/org/apache/maven/shared/scriptinterpreter
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 16
16
# under the License.
17
17
18
18
_extends : maven-gh-actions-shared
19
- tag-template : maven-release -$NEXT_MINOR_VERSION
19
+ tag-template : maven-script-interpreter -$NEXT_MINOR_VERSION
Original file line number Diff line number Diff line change 40
40
*/
41
41
public class ScriptRunner implements Closeable {
42
42
43
+ private static final Object LOCK = new Object ();
44
+
43
45
private static final Logger LOG = LoggerFactory .getLogger (ScriptRunner .class );
44
46
45
47
/**
@@ -216,7 +218,9 @@ private void executeRun(
216
218
scriptVariables .put ("basedir" , scriptFile .getParentFile ());
217
219
scriptVariables .put ("context" , context );
218
220
219
- result = interpreter .evaluateScript (script , scriptVariables , out );
221
+ synchronized (LOCK ) {
222
+ result = interpreter .evaluateScript (script , scriptVariables , out );
223
+ }
220
224
if (logger != null ) {
221
225
logger .consumeLine ("Finished " + scriptDescription + ": " + scriptFile );
222
226
}
You can’t perform that action at this time.
0 commit comments