Форматирование кода

This commit is contained in:
2026-04-11 12:53:17 +03:00
parent 3f74fb6dc5
commit c028c626cf
12 changed files with 39 additions and 29 deletions

View File

@@ -1,11 +1,12 @@
# shellcheck shell=bash
# vim: ft=sh
if command -v eget >/dev/null; then
! command -v dotdrop > /dev/null && return
if command -v eget > /dev/null; then
EGET_CONFIG="$XDG_CONFIG_HOME/eget/eget.toml"
[ -r "$XDG_CONFIG_HOME/eget/eget.toml" ] && export EGET_CONFIG
[[ -z ${EGET_TARGET_DIR+set} ]] && EGET_TARGET_DIR="${XDG_CACHE_HOME}/eget"
export EGET_TARGET_DIR
mkdir -p "${EGET_TARGET_DIR}" >/dev/null
mkdir -p "${EGET_TARGET_DIR}" > /dev/null
export PATH="${EGET_TARGET_DIR}:${PATH}"
fi