Skip to content

Commit

Permalink
fix for purging packages on debian systems
Browse files Browse the repository at this point in the history
  • Loading branch information
JTabel committed Nov 11, 2020
1 parent a562b9f commit 4ef2c40
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ Authors
- Stefan Kaes [@skaes](https://github.com/skaes)
- Sebastian Brandt [@sebbrandt87](https://github.com/sebbrandt87)
- Hannes Georg [@hannesg](https://github.com/hannesg)
- Julian Tabel [@JTabel](https://github.com/JTabel)

License
-----------------
Expand Down
3 changes: 2 additions & 1 deletion fpm-fry.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = 'fpm-fry'
gem.version = '0.4.4'
gem.version = '0.4.5'
gem.date = Time.now.strftime("%Y-%m-%d")

gem.summary = "FPM Fry"
Expand All @@ -12,6 +12,7 @@ Gem::Specification.new do |gem|
'Stefan Kaes',
'Sebastian Brandt',
'Hannes Georg',
'Julian Tabel'
]
gem.email = '[email protected]'
gem.homepage = 'https://github.com/xing/fpm-fry'
Expand Down
2 changes: 1 addition & 1 deletion lib/fpm/fry/templates/debian/after_remove.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

case "$1" in
remove)
remove|purge)
<%= remove.join("\n") %>
;;
upgrade)
Expand Down
2 changes: 1 addition & 1 deletion lib/fpm/fry/templates/debian/before_remove.erb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

case "$1" in
remove)
remove|purge)
<%= remove.join("\n") %>
;;
upgrade)
Expand Down

0 comments on commit 4ef2c40

Please sign in to comment.