This commit is contained in:
pika 2025-05-22 11:42:51 +02:00
parent 5055ab05ba
commit 65e5f5eb10

View file

@ -1,4 +1,10 @@
#!/usr/bin/env bash
# ─< Check if the given command exists silently >─────────────────────────────────────────
command_exists() {
command -v "$@" >/dev/null 2>&1
}
getImports() {
local url="$1"
local import="$(mktemp)"