diff --git a/.obsidian/plugins/obsidian-git/obsidian_askpass (conflicted copy 2026-01-26 143605).sh b/.obsidian/plugins/obsidian-git/obsidian_askpass (conflicted copy 2026-01-26 143605).sh deleted file mode 100644 index 2e5eb5d..0000000 --- a/.obsidian/plugins/obsidian-git/obsidian_askpass (conflicted copy 2026-01-26 143605).sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -PROMPT="$1" -TEMP_FILE="$OBSIDIAN_GIT_CREDENTIALS_INPUT" - -cleanup() { - rm -f "$TEMP_FILE" "$TEMP_FILE.response" -} -trap cleanup EXIT - -echo "$PROMPT" > "$TEMP_FILE" - -while [ ! -e "$TEMP_FILE.response" ]; do - if [ ! -e "$TEMP_FILE" ]; then - echo "Trigger file got removed: Abort" >&2 - exit 1 - fi - sleep 0.1 -done - -RESPONSE=$(cat "$TEMP_FILE.response") - -echo "$RESPONSE"