Skip to content

Commit

Permalink
chore: fix justfile (#144)
Browse files Browse the repository at this point in the history
* chore: fix justfile

* use just 1.39.0
  • Loading branch information
ledif authored Jan 23, 2025
1 parent 0ffa0f3 commit 4d96003
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
1 change: 0 additions & 1 deletion just/aurora-apps.just
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ install-openrazer-frontend:
fi
echo "$OPENRAZER_CONFIGURATOR_APP is installed"
# alias for install-incus
[group('Apps')]
incus:
Expand Down

0 comments on commit 4d96003

Please sign in to comment.