Skip to content

Commit

Permalink
Make sure the file removal happens in the build task
Browse files Browse the repository at this point in the history
  • Loading branch information
willaerk committed Jun 27, 2024
1 parent 693d829 commit 25c4997
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/tasks/jwt-provider/build.rake
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ namespace 'jwt-provider' do
desc "Build binaries"
task :build do |task|
system('composer2 install --no-dev --ignore-platform-reqs --prefer-dist --optimize-autoloader') or exit 1
end
desc "remove debug files"
task :remove_debug_files do |task|
system('rm web/jwt-example.php')
FileUtils.rm('web/jwt-example.php', :force => true)
end
end

0 comments on commit 25c4997

Please sign in to comment.