From 4d96003691ddaef0f04d90670303a553d51a1d7f Mon Sep 17 00:00:00 2001 From: Adam Fidel Date: Thu, 23 Jan 2025 08:06:40 -0600 Subject: [PATCH] chore: fix justfile (#144) * chore: fix justfile * use just 1.39.0 --- Justfile | 4 ++-- just/aurora-apps.just | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Justfile b/Justfile index b009eb7c..ccd8d58f 100644 --- a/Justfile +++ b/Justfile @@ -25,8 +25,8 @@ tags := '( [beta]=beta )' export SUDO_DISPLAY := if `if [ -n "${DISPLAY:-}" ] || [ -n "${WAYLAND_DISPLAY:-}" ]; then echo true; fi` == "true" { "true" } else { "false" } -export SUDOIF := if `id -u` == "0" { "" } else { if SUDO_DISPLAY == "true" { "sudo --askpass" } else { "sudo" } } -export PODMAN := if path_exists("/usr/bin/podman") == "true" { env("PODMAN", "/usr/bin/podman") } else { if path_exists("/usr/bin/docker") == "true" { env("PODMAN", "docker") } else { env("PODMAN", "exit 1 ; ") } } +export SUDOIF := if `id -u` == "0" { "" } else if SUDO_DISPLAY == "true" { "sudo --askpass" } else { "sudo" } +export PODMAN := if path_exists("/usr/bin/podman") == "true" { env("PODMAN", "/usr/bin/podman") } else if path_exists("/usr/bin/docker") == "true" { env("PODMAN", "docker") } else { env("PODMAN", "exit 1 ; ") } export PULL_POLICY := if PODMAN =~ "docker" { "missing" } else { "newer" } [private] diff --git a/just/aurora-apps.just b/just/aurora-apps.just index 894ddeb5..8f6e241d 100644 --- a/just/aurora-apps.just +++ b/just/aurora-apps.just @@ -122,7 +122,6 @@ install-openrazer-frontend: fi echo "$OPENRAZER_CONFIGURATOR_APP is installed" - # alias for install-incus [group('Apps')] incus: