2021-04-03 06:33:43 UTC - Matt Welke: The Makefile in <https://github.com/apache/openwhisk-runtime-java/blob/master/core/java8actionloop/Makefile> has a few things I can run like `test-source` and `test-jar` that reference a folder called `../../example` but the repo doesn't have that folder at the top level, so I get an error: ```~/code/github.com/apache/openwhisk-runtime-java/core/java8actionloop (master) > make test-source python ../../tools/invoke.py init ../../example/Main.java /home/matt/code/github.com/apache/openwhisk-runtime-java/core/java8actionloop/../../tools/invoke.py:98: SyntaxWarning: "is not" with a literal. Did you mean "!="? elif artifact is not '': [Errno 2] No such file or directory: '../../example/Main.java' make: *** [Makefile:48: test-source] Error 1``` How are these parts of the Makefile supposed to be used? Or is this old code that wasn't removed from the Makefile? https://openwhisk-team.slack.com/archives/C3TPCAQG1/p1617431623080500?thread_ts=1617431623.080500&cid=C3TPCAQG1 ----