moved ~/etc to ~/.etc

This commit is contained in:
Phuntsok Drak-pa 2019-10-21 11:01:39 +02:00
parent d710d25b62
commit 814ed46f68
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ yadm submodule update --init --recursive
printf "\n# Generating alt files ########################################################\n\n"
yadm alt
for f in (find ~/etc -type f)
for f in (find ~/.etc -type f)
set dest (echo $f | sed -n 's/^.*etc\(.*\)$/\/etc\1/p')
sudo ln -s $f $dest
end

View File

@ -451,7 +451,7 @@
:END:
We have some files in [[file:ect/][etc/]] that are to be symlinked to =/etc=.
#+BEGIN_SRC fish :exports code :tangle ~/.yadm/bootstrap
for f in (find ~/etc -type f)
for f in (find ~/.etc -type f)
set dest (echo $f | sed -n 's/^.*etc\(.*\)$/\/etc\1/p')
sudo ln -s $f $dest
end