From 7c405b156f9f60c9886fdc35c7d404a0894d1c18 Mon Sep 17 00:00:00 2001 From: Philip Henning Date: Thu, 12 Jun 2025 13:35:47 +0200 Subject: [PATCH] Fix install script commands for dotdrop --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69cc870..94821b6 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ I manage my dotfiles using [dotdrop](https://github.com/deadc0de6/dotdrop). && uv tool install --allow-python-downloads --python 3.11 dotdrop \ && echo "Enter profile name (leave empty for default): " \ && read DOTDROP_PROFILE \ - && [[ -n ${DOTDROP_PROFILE} ]] && DOTDROP_PROFILE="-p ${DOTDROP_PROFILE}" || DOTDROP_PROFILE="" \ + && [[ -n ${DOTDROP_PROFILE} ]] && DOTDROP_PROFILE="-p${DOTDROP_PROFILE}" || DOTDROP_PROFILE="" \ && ~/.local/bin/dotdrop ${DOTDROP_PROFILE} --cfg=~/.files/config.yaml install \ ; unset DOTDROP_PROFILE \ && brew bundle install --file=~/.files/misc/Brewfile \