How to update all your ubuntu-make packages? - Ask Ubuntu


currently can't update packages umake. here's link closed github issue how update installed software?#122. mentionned need remove package , reinstall this.

umake --remove <type> <package> && umake <type> <package> 

for example, if know idea shoul reinstalled, type:

umake --remove ide idea && umake ide idea 

so lookong solution update umake packages.

assuming have choosed default installation path, packages installed in $home/.local/share/umake/

so can list them , update them this:

for path in $(ls -d $home/.local/share/umake/**/*/);     package=$(basename ${path});     type=$(basename $(dirname ${path}));     echo "reinstalling ${package} of ${type}";     umake --remove $type $package && umake $type $package; done 

Comments

Popular posts from this blog

download - Firefox cannot save files (most of the time), how to solve? - Super User

windows - "-2146893807 NTE_NOT_FOUND" when repair certificate store - Super User

sql server - "Configuration file does not exist", Event ID 274 - Super User