aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2026-07-28 08:21:30 +0200
committerThomas Schmucker <ts@its1.de>2026-07-28 08:21:30 +0200
commitf5c192c4faf8616af4ad46b9bdbb935589303894 (patch)
tree9947ea111a1f8461c7130621860dc2ce488b3360
parent24b2283b318fb0e68342e77c13ab220f77db4de1 (diff)
downloaddotfiles-f5c192c4faf8616af4ad46b9bdbb935589303894.tar.gz
dotfiles-f5c192c4faf8616af4ad46b9bdbb935589303894.tar.bz2
dotfiles-f5c192c4faf8616af4ad46b9bdbb935589303894.zip
bootstrap: Abschlussmeldungen benennen das jeweilige Skript
-rw-r--r--bootstrap-win/git.ps14
-rw-r--r--bootstrap-win/neovim.ps14
-rwxr-xr-xbootstrap/git.sh2
-rwxr-xr-xbootstrap/neovim.sh2
-rwxr-xr-xbootstrap/zsh.sh2
5 files changed, 7 insertions, 7 deletions
diff --git a/bootstrap-win/git.ps1 b/bootstrap-win/git.ps1
index 41a3112..6accba4 100644
--- a/bootstrap-win/git.ps1
+++ b/bootstrap-win/git.ps1
@@ -63,9 +63,9 @@ function Main {
63 63
64 Write-Host "" 64 Write-Host ""
65 if ($script:Failures.Count -eq 0) { 65 if ($script:Failures.Count -eq 0) {
66 Write-Host "Bootstrap abgeschlossen." -ForegroundColor Green 66 Write-Host "Git-Bootstrap abgeschlossen." -ForegroundColor Green
67 } else { 67 } else {
68 Write-Host "Bootstrap abgeschlossen, mit $($script:Failures.Count) Warnung(en):" -ForegroundColor Yellow 68 Write-Host "Git-Bootstrap abgeschlossen, mit $($script:Failures.Count) Warnung(en):" -ForegroundColor Yellow
69 foreach ($f in $script:Failures) { 69 foreach ($f in $script:Failures) {
70 Write-Host " - $f" -ForegroundColor Yellow 70 Write-Host " - $f" -ForegroundColor Yellow
71 } 71 }
diff --git a/bootstrap-win/neovim.ps1 b/bootstrap-win/neovim.ps1
index 32e2db7..0e7016e 100644
--- a/bootstrap-win/neovim.ps1
+++ b/bootstrap-win/neovim.ps1
@@ -187,9 +187,9 @@ function Main {
187 187
188 Write-Host "" 188 Write-Host ""
189 if ($script:Failures.Count -eq 0) { 189 if ($script:Failures.Count -eq 0) {
190 Write-Host "Bootstrap abgeschlossen." -ForegroundColor Green 190 Write-Host "Neovim-Bootstrap abgeschlossen." -ForegroundColor Green
191 } else { 191 } else {
192 Write-Host "Bootstrap abgeschlossen, mit $($script:Failures.Count) Warnung(en):" -ForegroundColor Yellow 192 Write-Host "Neovim-Bootstrap abgeschlossen, mit $($script:Failures.Count) Warnung(en):" -ForegroundColor Yellow
193 foreach ($f in $script:Failures) { 193 foreach ($f in $script:Failures) {
194 Write-Host " - $f" -ForegroundColor Yellow 194 Write-Host " - $f" -ForegroundColor Yellow
195 } 195 }
diff --git a/bootstrap/git.sh b/bootstrap/git.sh
index 36d7067..b4f285f 100755
--- a/bootstrap/git.sh
+++ b/bootstrap/git.sh
@@ -72,7 +72,7 @@ main() {
72 72
73 install_prerequisites 73 install_prerequisites
74 74
75 printf "\nBootstrap abgeschlossen.\n" 75 printf "\nGit-Bootstrap abgeschlossen.\n"
76} 76}
77 77
78main "$@" 78main "$@"
diff --git a/bootstrap/neovim.sh b/bootstrap/neovim.sh
index 94bf82b..14097cc 100755
--- a/bootstrap/neovim.sh
+++ b/bootstrap/neovim.sh
@@ -162,7 +162,7 @@ main() {
162 install_lsp 162 install_lsp
163 install_analysis 163 install_analysis
164 164
165 printf "\nBootstrap abgeschlossen.\n" 165 printf "\nNeovim-Bootstrap abgeschlossen.\n"
166} 166}
167 167
168main "$@" 168main "$@"
diff --git a/bootstrap/zsh.sh b/bootstrap/zsh.sh
index 4c1939e..0be7ff3 100755
--- a/bootstrap/zsh.sh
+++ b/bootstrap/zsh.sh
@@ -127,7 +127,7 @@ main() {
127 install_tools 127 install_tools
128 set_default_shell 128 set_default_shell
129 129
130 printf "\nBootstrap abgeschlossen.\n" 130 printf "\nzsh-Bootstrap abgeschlossen.\n"
131} 131}
132 132
133main "$@" 133main "$@"