From 8e0708045389bd9d735bd7139074b57d3a834490 Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Sat, 23 Mar 2024 05:40:35 +0000 Subject: [PATCH] Removed obsidian plugins and added DEBUG for warp disconnect --- home/.chezmoidata.yaml | 5 ----- scripts/provision.sh | 8 +++++--- scripts/src/provision.sh.tmpl | 8 +++++--- 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/home/.chezmoidata.yaml b/home/.chezmoidata.yaml index 83bed399..71482363 100644 --- a/home/.chezmoidata.yaml +++ b/home/.chezmoidata.yaml @@ -1889,8 +1889,6 @@ softwarePlugins: - https://github.com/aleksey-rezvov/obsidian-local-images - https://github.com/alexandru-dinu/obsidian-sortable - https://github.com/AlexW00/obsidian-note-linker - - https://github.com/Alt-er/obsidian-sync-share - - https://github.com/andrewbrereton/obsidian-to-ical-plugin - https://github.com/argenos/nldates-obsidian - https://github.com/bingryan/obsidian-markdown-export-plugin - https://github.com/blacksmithgu/obsidian-dataview @@ -1914,17 +1912,14 @@ softwarePlugins: - https://github.com/FlorianWoelki/obsidian-iconize - https://github.com/ganesshkumar/obsidian-table-editor - https://github.com/getmatterapp/obsidian-matter - - https://github.com/HananoshikaYomaru/obsidian-publish-url - https://github.com/HEmile/obsidian-search-on-internet - https://github.com/hipstersmoothie/obsidian-plugin-toc - https://github.com/ivan-lednev/obsidian-day-planner - https://github.com/jamesmagoo/nostr-writer - https://github.com/javalent/settings-search - - https://github.com/jmilldotdev/obsidian-wikipedia - https://github.com/joethei/obsidian-rss - https://github.com/jonstodle/obsius-obsidian-plugin - https://github.com/khoj-ai/khoj - - https://github.com/LBF38/obsidian-syncthing-integration - https://github.com/liamcain/obsidian-calendar-plugin - https://github.com/liamcain/obsidian-periodic-notes - https://github.com/linjunpop/obsidian-gist diff --git a/scripts/provision.sh b/scripts/provision.sh index c40e539c..77b4120a 100644 --- a/scripts/provision.sh +++ b/scripts/provision.sh @@ -420,9 +420,11 @@ setCIEnvironmentVariables() { # @description Disconnect from WARP, if connected ensureWarpDisconnected() { - if command -v warp-cli > /dev/null; then - if warp-cli status | grep 'Connected' > /dev/null; then - logg info "Disconnecting from WARP" && warp-cli disconnect && logg success "Disconnected WARP to prevent conflicts" + if [ -z "$DEBUG" ]; then + if command -v warp-cli > /dev/null; then + if warp-cli status | grep 'Connected' > /dev/null; then + logg info "Disconnecting from WARP" && warp-cli disconnect && logg success "Disconnected WARP to prevent conflicts" + fi fi fi } diff --git a/scripts/src/provision.sh.tmpl b/scripts/src/provision.sh.tmpl index f35bdb94..172a71cc 100644 --- a/scripts/src/provision.sh.tmpl +++ b/scripts/src/provision.sh.tmpl @@ -100,9 +100,11 @@ setCIEnvironmentVariables() { # @description Disconnect from WARP, if connected ensureWarpDisconnected() { - if command -v warp-cli > /dev/null; then - if warp-cli status | grep 'Connected' > /dev/null; then - logg info "Disconnecting from WARP" && warp-cli disconnect && logg success "Disconnected WARP to prevent conflicts" + if [ -z "$DEBUG" ]; then + if command -v warp-cli > /dev/null; then + if warp-cli status | grep 'Connected' > /dev/null; then + logg info "Disconnecting from WARP" && warp-cli disconnect && logg success "Disconnected WARP to prevent conflicts" + fi fi fi }