X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Futils.ex;h=bc0c953322338b347316b5414f4d3f36b78cfffb;hb=a9bc652ab9f4880566a823d3d67fe0247f7954f4;hp=fa75a8c9930426ae7f5473d7dc3c0ce0b2f3db9f;hpb=1830b6aae5e3fa0dfebcadd6f4b78871f702dd2d;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"