Skip to content

Commit

Permalink
build(metadata-events): fix shell interpreter mismatch in build script (
Browse files Browse the repository at this point in the history
  • Loading branch information
chakru-r authored Dec 10, 2024
1 parent 43c8460 commit 638a0e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata-events/mxe-schemas/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ task copyOriginalAvsc(type: Copy, dependsOn: generateAvroSchema) {
}

task renameNamespace(type: Exec, dependsOn: copyOriginalAvsc) {
commandLine 'sh', './rename-namespace.sh'
commandLine 'bash', './rename-namespace.sh'
}

build.dependsOn renameNamespace
Expand All @@ -34,4 +34,4 @@ clean {
project.delete('src/main/pegasus')
project.delete('src/mainGeneratedAvroSchema/avro')
project.delete('src/renamed/avro')
}
}

0 comments on commit 638a0e3

Please sign in to comment.