X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Futils.ex;h=bc0c953322338b347316b5414f4d3f36b78cfffb;hb=537ba1c5e07a33692ed63ca50b50e240efce6f88;hp=fa75a8c9930426ae7f5473d7dc3c0ce0b2f3db9f;hpb=6bb4f4e1721d30762978b59a1aed11137223c183;p=akkoma diff --git a/lib/pleroma/utils.ex b/lib/pleroma/utils.ex index fa75a8c99..bc0c95332 100644 --- a/lib/pleroma/utils.ex +++ b/lib/pleroma/utils.ex @@ -1,5 +1,5 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2020 Pleroma Authors +# Copyright © 2017-2021 Pleroma Authors # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Utils do @@ -30,7 +30,10 @@ defmodule Pleroma.Utils do """ @spec command_available?(String.t()) :: boolean() def command_available?(command) do - match?({_output, 0}, System.cmd("sh", ["-c", "command -v #{command}"])) + case :os.find_executable(String.to_charlist(command)) do + false -> false + _ -> true + end end @doc "creates the uniq temporary directory"