about summary refs log tree commit diff stats
path: root/update.sh
blob: 3a8c7cb16a5c8a48f86689bc48155836e7c25866 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env sh
__update_sh_run() {
    __update_sh_command="$1"
    shift 1

    printf "\033[35;1m> \033[0m\033[35;1m%s\033[0m\n" "Running '$(basename "$__update_sh_command")' .."

    "$__update_sh_command" "$@"

    unset __update_sh_command
}

__update_sh_run ./modules/by-name/fi/firefox/update_extensions.sh "$@"
__update_sh_run ./pkgs/update_pkgs.sh "$@"

__update_sh_run nix flake check
__update_sh_run ./build.sh

printf "\033[31;1m%s\033[0m\033[33;1m%s\033[0m\n" "Also update out-of-tree dependencies, like " "yt" 2>&1

# vim: ft=sh