Skip to content

Commit

Permalink
fpm: fix dotenv dependency issues in focal and buster
Browse files Browse the repository at this point in the history
This commit resolves a critical installation issue on Ubuntu 20.04 and Debian Buster with rTorrent, Deluge and qBittorrent when building from source. There is a package conflict with dotenv that prevents fpm from installing.
  • Loading branch information
stickz authored Feb 17, 2024
1 parent dea7383 commit db719aa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sources/functions/fpm
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ function install_fpm() {
case $(_os_codename) in
buster)
gem install public_suffix -v 4.0.7 >> $log 2>&1
gem install dotenv -v 2.8.1 >> $log 2>&1
;;
focal)
gem install dotenv -v 2.8.1 >> $log 2>&1
;;
*) ;;
esac
Expand Down

0 comments on commit db719aa

Please sign in to comment.