Skip to content

Commit

Permalink
fixx
Browse files Browse the repository at this point in the history
Signed-off-by: pushkarm029 <[email protected]>
  • Loading branch information
Pushkarm029 committed Jun 2, 2024
1 parent 92911df commit bccbf57
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fs-storage/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,9 @@ download-test-lib:

.PHONY: java-test
java-test:
(cd ../target/debug && export LD_LIBRARY_PATH=$$PWD && cd ../../fs-storage/tests && javac -d out FileStorage.java && javac -d out -cp out:$(JAR_FILE) FileStorageTest.java && java -jar $(JAR_FILE) --class-path out --scan-class-path)
(cd ../target/debug && \
export LD_LIBRARY_PATH=$$PWD && \
cd ../../fs-storage/tests && \
javac -Xlint:none -d out FileStorage.java && \
javac -Xlint:none -d out -cp out:$(JAR_FILE) FileStorageTest.java && \
java -jar $(JAR_FILE) --class-path out --scan-class-path)

0 comments on commit bccbf57

Please sign in to comment.