Skip to content

Commit

Permalink
Merge pull request #148 from ayeshLK/main
Browse files Browse the repository at this point in the history
Fix login in selecting the correct path for bala-directory
  • Loading branch information
ayeshLK authored Jun 28, 2024
2 parents 11ea85c + 7404233 commit 3ddc6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/io/ballerina/plugin/BallerinaPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class BallerinaPlugin implements Plugin<Project> {
}

def balaPath = "$project.projectDir/${balBuildTarget}/bala"
def balaDir = new File(balaDirPath)
def balaDir = new File(balaPath)
if (!balaDir.exists()) {
println("[Error] 'bala' directory does not exist: ${balaPath}, hence exiting")
return
Expand Down

0 comments on commit 3ddc6cb

Please sign in to comment.