Skip to content

Commit

Permalink
add more messages
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
  • Loading branch information
Andrey1994 committed Jul 27, 2023
1 parent f34072f commit 0f0d43c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ private static Path unpack_from_jar (String lib_name)
try
{
File file = new File (lib_name);
System.err.println ("Unpacking to: " + file.getAbsolutePath ().toString ());
if (file.exists ())
file.delete ();
InputStream link = (BoardShim.class.getResourceAsStream (lib_name));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ private static Path unpack_from_jar (String lib_name)
try
{
File file = new File (lib_name);
System.err.println ("Unpacking to: " + file.getAbsolutePath ().toString ());
if (file.exists ())
file.delete ();
InputStream link = (BoardShim.class.getResourceAsStream (lib_name));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ private static Path unpack_from_jar (String lib_name)
try
{
File file = new File (lib_name);
System.err.println ("Unpacking to: " + file.getAbsolutePath ().toString ());
if (file.exists ())
file.delete ();
InputStream link = (BoardShim.class.getResourceAsStream (lib_name));
Expand Down

0 comments on commit 0f0d43c

Please sign in to comment.