From 19b807f1462d66d705bf4e41a3735a4a0a30ca26 Mon Sep 17 00:00:00 2001 From: Vessel Wave Date: Thu, 11 Aug 2022 15:33:03 +0300 Subject: [PATCH] Fix stow command in stow shownotes --- content/managing-your-dotfiles/using-gnu-stow.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/managing-your-dotfiles/using-gnu-stow.org b/content/managing-your-dotfiles/using-gnu-stow.org index 9926a99..e80e85e 100644 --- a/content/managing-your-dotfiles/using-gnu-stow.org +++ b/content/managing-your-dotfiles/using-gnu-stow.org @@ -71,11 +71,12 @@ This means that =stow .= is equivalent to: #+begin_src sh - stow --dir=~/.dotfiles --target=~/ + # dot here is a relative path to --dir and you have to put it + stow -S . --dir=~/.dotfiles --target=~/ # OR - stow -d ~/.dotfiles -t ~/ + stow . -d ~/.dotfiles -t ~/ #+end_src