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
Currently, we create temp directories in /tmp/ and they are not properly cleaned up: deleteOnExit() only deletes empty directories and in most cases, the created wiring-classes directory is not empty.
As we are using the default build directory when in dev mode, we should also probably use the target/wiring-classes directory.
This if the wiring classes are not specific to the dev mode, if they are, we should create a specific directory in target/, we don't want to create directories outside of it.
The text was updated successfully, but these errors were encountered:
Currently, we create temp directories in
/tmp/
and they are not properly cleaned up:deleteOnExit()
only deletes empty directories and in most cases, the createdwiring-classes
directory is not empty.As we are using the default
build
directory when in dev mode, we should also probably use thetarget/wiring-classes
directory.This if the wiring classes are not specific to the dev mode, if they are, we should create a specific directory in
target/
, we don't want to create directories outside of it.The text was updated successfully, but these errors were encountered: