Skip to content

Commit

Permalink
Fix py ftp lib installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed Oct 31, 2024
1 parent fc41ab7 commit e697f10
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion sources/install/package_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,15 @@ function install_pipx() {
add-test-command "pipx --version"
}

function install_pyftpdlib() {
# CODE-CHECK-WHITELIST=add-history
colorecho "Installing pyftpdlib"
pip3 install pyftpdlib
add-aliases pyftpdlib
add-test-command "python3 -c 'import pyftpdlib'"
add-to-list "pyftpdlib,https://github.com/giampaolo/pyftpdlib/,Extremely fast and scalable Python FTP server library"
}

function install_yarn() {
# CODE-CHECK-WHITELIST=add-aliases,add-history,add-to-list
colorecho "Installing yarn"
Expand Down Expand Up @@ -487,7 +496,6 @@ function package_base() {
add-aliases grc
add-aliases emacs-nox
add-aliases xsel
add-aliases pyftpdlib

# Rust, Cargo, rvm
install_rust_cargo
Expand All @@ -504,6 +512,7 @@ function package_base() {
install_fzf # Fuzzy finder
add-history curl
install_yarn
install_pyftpdlib
install_ultimate_vimrc # Make vim usable OOFB
install_neovim
install_mdcat # cat markdown files
Expand Down

0 comments on commit e697f10

Please sign in to comment.