Rename scripts
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
df6b44e541
commit
410d0b33c6
46 changed files with 566 additions and 249 deletions
22
system/.local/bin/upgrade
Executable file
22
system/.local/bin/upgrade
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/usr/bin/env bash
|
||||
#
|
||||
# SCRIPT NAME:
|
||||
# upgrade
|
||||
#
|
||||
# AUTHOR:
|
||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# This script upgrades all pacman packages and globally installed
|
||||
# npm packages.
|
||||
#
|
||||
# USAGE:
|
||||
# ./upgrade
|
||||
. utils
|
||||
|
||||
print_header "Upgrading system"
|
||||
print_section "Update arch packages"
|
||||
yay -Syu --devel
|
||||
|
||||
print_section "Update npm packages"
|
||||
npm update -g
|
Loading…
Add table
Add a link
Reference in a new issue