Skip to content

Commit

Permalink
feat: replace dots in default project name Fixes #347
Browse files Browse the repository at this point in the history
  • Loading branch information
augi committed Mar 15, 2022
1 parent e5044ac commit 9150cbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ abstract class ComposeSettings {

private static String generateSafeProjectNamePrefix(Project project) {
def fullPathMd5 = MessageDigest.getInstance("MD5").digest(project.projectDir.absolutePath.toString().getBytes(StandardCharsets.UTF_8)).encodeHex().toString()
"${fullPathMd5}_${project.name}"
"${fullPathMd5}_${project.name.replace('.', '_')}"
}

protected ComposeSettings cloneAsNested(String name) {
Expand Down

0 comments on commit 9150cbe

Please sign in to comment.