Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shell/lib/mise.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ensure_mise_installed() {
install_mise() {
local install_script=/tmp/mise-install.sh

if [[ ! -f $install_script || "$(wc -c "$install_script")" -eq 0 ]]; then
if [[ ! -f $install_script || "$(wc -c "$install_script" | awk '{print $1}')" -eq 0 ]]; then
if ! retry 5 5 gpg --keyserver hkps://keys.openpgp.org --recv-keys 0x24853ec9f655ce80b48e6c3a8b81c9d17413a06d; then
error "Could not import mise GPG release key"
install_mise_via_apt_if_ubuntu_in_ci
Expand Down