We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As stated in the Gradle scaffolding reference, it looks for a build.gradle or settings.gradle file, otherwise the scaffolding will fail. This makes the scaffolding not support projects with Kotlin based build scripts, which are named build.gradle.kts and settings.gradle.kts. The issue happens here: https://github.com/habitat-sh/core-plans/blob/master/scaffolding-gradle/lib/scaffolding.sh#L209-L215
build.gradle
settings.gradle
build.gradle.kts
settings.gradle.kts
_confirm_scaffolding() { if [[ -f build.gradle || -f setttings.gradle ]]; then return 0 else exit_with "Gradle Scaffolding cannot find build.gradle or settings.gradle" 5 fi }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As stated in the Gradle scaffolding reference, it looks for a
build.gradle
orsettings.gradle
file, otherwise the scaffolding will fail. This makes the scaffolding not support projects with Kotlin based build scripts, which are namedbuild.gradle.kts
andsettings.gradle.kts
.The issue happens here: https://github.com/habitat-sh/core-plans/blob/master/scaffolding-gradle/lib/scaffolding.sh#L209-L215
The text was updated successfully, but these errors were encountered: