-
Bug
-
Resolution: Unresolved
-
P4
-
jfx24
To reproduce, use two repos in sibling directories, e.g., jfx1, jfx2, then:
cd $PARENTDIR/jfx1
gradle sdk shims
cd ../jfx2
gradle -PTEST_ONLY=true -PTEST_SDK_DIR=../jfx1/build test
This will fail to find the test sdk dir.
WORKAROUND: Use an absolute path
cd $PARENTDIR/jfx1
gradle sdk shims
cd ../jfx2
gradle -PTEST_ONLY=true -PTEST_SDK_DIR=../jfx1/build test
This will fail to find the test sdk dir.
WORKAROUND: Use an absolute path