Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Willena committed Jun 18, 2023
1 parent 5cdc797 commit 227c7e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RESOURCE_DIR = src/main/resources
all: jni-header package

deploy:
mvn package deploy -P release --settings settings.xml
mvn deploy -P release --settings settings.xml

DOCKER_RUN_OPTS=--rm
MVN:=mvn
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/sqlite/SQLiteJDBCLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ public static final class VersionHolder {
version = versionData.getProperty("version", version);
version = version.trim().replaceAll("[^0-9\\.]", "");
} else {
throw new FileNotFoundException("Version file is null");
}
throw new FileNotFoundException("Version file is null");
}
} catch (IOException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit 227c7e8

Please sign in to comment.