Skip to content

Commit

Permalink
#126: Fix groovy string interpolation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Sabrina Wullschleger committed Mar 13, 2024
1 parent cbea739 commit 1c34c16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import ch.so.agi.gretl.tasks.*
apply plugin: 'ch.so.agi.gretl'

def pwd = rootProject.projectDir.toString()
def db_uri = "jdbc:duckdb:$pwd/foo.duckdb"
def db_uri = "jdbc:duckdb:$pwd/foo.duckdb".toString()

def db_user = null
def db_pass = null
Expand Down

0 comments on commit 1c34c16

Please sign in to comment.