This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| find . -mindepth 1 -maxdepth 1 -type d | while read -r software_name | |
| do | |
| echo -e "\e[36mStart update package ${software_name}" | |
| cd ${software_name} | |
| git pull | |
| makepkg -si --needed --noconfirm | |
| cd .. | |
| echo -e "\e[36mFinished update package ${software_name}" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.