Skip to content

Commit

Permalink
fix(build): don't purge ingestion codegen files on gradle clean (#2645)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Jun 4, 2021
1 parent c98446c commit 7f0c6bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions metadata-ingestion/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ task codegen(type: Exec, dependsOn: [environmentSetup, installPackage, ':metadat

task install(dependsOn: [installPackage, codegen])

task installDev(type: Exec, dependsOn: [environmentSetup, codegen]) {
task installDev(type: Exec, dependsOn: [install]) {
commandLine "${venv_name}/bin/pip", 'install', '-e', '.[dev]'
}
task lint(type: Exec, dependsOn: installDev) {
Expand All @@ -51,7 +51,6 @@ check.dependsOn lint
check.dependsOn test

clean {
delete 'src/datahub/metadata'
delete venv_name
delete 'build'
delete 'dist'
Expand Down

0 comments on commit 7f0c6bb

Please sign in to comment.