Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

include does not accept absolute path with drive on windows #60

Open
b-gyula opened this issue Jun 18, 2024 · 1 comment
Open

include does not accept absolute path with drive on windows #60

b-gyula opened this issue Jun 18, 2024 · 1 comment

Comments

@b-gyula
Copy link

b-gyula commented Jun 18, 2024

This script gives

Unexpected error running Liquibase: D:/dev/liquibase/groovy-dsl/test/changelogs/log1.groovy does not exist
liquibase.exception.ChangeLogParseException: D:/dev/liquibase/groovy-dsl/test/changelogs/log1.groovy does not exist

even if the file does exists

databaseChangeLog {
	include (file: 'D:/dev/liquibase/groovy-dsl/test/changelogs/log1.groovy')
}

This works fine:

databaseChangeLog {
	include (file: '/dev/liquibase/groovy-dsl/test/changelogs/log1.groovy')
}
@stevesaliman
Copy link
Collaborator

Version 4.0.0 of the Groovy DSL was released this morning. It changes the way include finds resourceses. Is this still an issue with the latest version?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants