diff options
| -rwxr-xr-x | archsetup | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -645,7 +645,7 @@ developer_workstation () {      pacman_install mpv               # video viewer  	aur_install proselint            # grammar checker      aur_install exercism             # command line tool for exercism.io -    pip_install 'python-lsp-server[all]' # python language support +	pacman_install python-lsp-server # python language support      action="setting up emacs configuration files" && display "task" "$action" @@ -668,7 +668,7 @@ developer_workstation () {      action="enabling docker service to launch on boot" && display "task" "$action"      systemctl enable docker.service >> "$logfile" 2>&1  || error "error" "$action" "$?"      pacman_install vagrant  >> "$logfile" 2>&1 || error "error" "$action" "$?" -    pip_install ansible >> "$logfile" 2>&1 || error "error" "$action" "$?" +	pacman_install ansible >> "$logfile" 2>&1 || error "error" "$action" "$?"  } | 
