Skip to content

Commit 547f04a

Browse files
committed
Convert lib download directory to absolute path
Signed-off-by: Saurabh Sinha <[email protected]>
1 parent 580cb4c commit 547f04a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/ibm/northstar/utils/BuildProject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ public static List<Path> buildProjectAndStreamClassFiles(String projectPath, Str
129129
*/
130130
public static boolean downloadLibraryDependencies(String projectPath) {
131131
// created download dir if it does not exist
132-
libDownloadPath = Paths.get(projectPath, LIB_DEPS_DOWNLOAD_DIR);
132+
libDownloadPath = Paths.get(projectPath, LIB_DEPS_DOWNLOAD_DIR).toAbsolutePath();
133133
if (!Files.exists(libDownloadPath)) {
134134
try {
135135
Files.createDirectory(libDownloadPath);

0 commit comments

Comments
 (0)