Skip to content

Commit

Permalink
echo path
Browse files Browse the repository at this point in the history
  • Loading branch information
arc0035 committed Nov 1, 2023
1 parent 793aef0 commit 15bd4ee
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ jar {
from file('src/main/resources/application.yml')
into 'dist/conf/'
}
// copy {
// from file('src/main/resources/start.sh')
// into 'dist/'
// }
// copy {
// from file('src/main/resources/stop.sh')
// into 'dist/'
// }
copy {
from file('start.sh')
into 'dist/'
}
copy {
from file('stop.sh')
into 'dist/'
}
copy {
from file('.').listFiles().findAll { File f -> (f.name.endsWith('.sh') || f.name.endsWith('.env')) }
into 'dist'
Expand Down

0 comments on commit 15bd4ee

Please sign in to comment.