diff --git a/justfile b/justfile index ded9849..f6bf133 100644 --- a/justfile +++ b/justfile @@ -9,7 +9,7 @@ release := `grep "VERSION_CODENAME" /etc/os-release | awk -F= '{print $2}'` run_user := env_var("USER") caddy: - #!/usr/bin/env sh + #!/usr/bin/env bash if [ "$distro" == "debian" ]; then sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg @@ -25,7 +25,7 @@ caddy: fi thelounge: - #!/usr/bin/env sh + #!/usr/bin/env bash if [ "$distro" == "debian" ]; then curl -s https://api.github.com/repos/thelounge/thelounge-deb/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d '"' | wget -qi - sudo apt install -y ./thelounge*.deb @@ -45,7 +45,7 @@ scihub: rm -fv ~/scihub-torrent-urls/urls.txt docker: - #!/usr/bin/env sh + #!/usr/bin/env bash if [ "$distro" == "debian" ]; then for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do sudo apt remove $pkg; done sudo apt update