Skip to content

Commit

Permalink
Fix issue with bin/packs command having no output (#35)
Browse files Browse the repository at this point in the history
* Fix no output on packwerk use cases in interactive CLI

* Bump version
  • Loading branch information
Alex Evanczuk authored Oct 15, 2022
1 parent 96e6833 commit 60bbe06
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
use_packwerk (0.57.10)
use_packwerk (0.57.11)
code_ownership
colorize
package_protections
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def user_facing_name

sig { override.params(prompt: TTY::Prompt).void }
def perform!(prompt)
`bin/packwerk update-deprecations`
system('bin/packwerk update-deprecations')
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def user_facing_name

sig { override.params(prompt: TTY::Prompt).void }
def perform!(prompt)
`bin/packwerk validate`
system('bin/packwerk validate')
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion use_packwerk.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = 'use_packwerk'
spec.version = '0.57.10'
spec.version = '0.57.11'
spec.authors = ['Gusto Engineers']
spec.email = ['dev@gusto.com']

Expand Down

0 comments on commit 60bbe06

Please sign in to comment.