1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-08 03:19:16 +00:00

fix templatenotfound for #226

This commit is contained in:
deadc0de6
2020-05-03 14:40:37 +02:00
parent 6ade21d7b6
commit 9f27c6bc48
3 changed files with 37 additions and 5 deletions

View File

@@ -47,6 +47,7 @@ echo -e "$(tput setaf 6)==> RUNNING $(basename $BASH_SOURCE) <==$(tput sgr0)"
# the dotfile source
tmps=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
mkdir -p ${tmps}/dotfiles
mkdir -p ${tmps}/dotfiles-other
# the dotfile destination
tmpd=`mktemp -d --suffix='-dotdrop-tests' || mktemp -d`
@@ -90,7 +91,7 @@ cat > ${cfg2} << _EOF
config:
backup: true
create: true
dotpath: dotfiles
dotpath: dotfiles-other
dotfiles:
f_def:
dst: ${tmpd}/def
@@ -110,10 +111,19 @@ _EOF
# create the source
mkdir -p ${tmps}/dotfiles/
echo "abc" > ${tmps}/dotfiles/abc
echo "def" > ${tmps}/dotfiles/def
echo "ghi" > ${tmps}/dotfiles/ghi
echo "{{@@ _dotfile_abs_dst @@}}" >> ${tmps}/dotfiles/abc
echo "def" > ${tmps}/dotfiles-other/def
echo "{{@@ _dotfile_abs_dst @@}}" >> ${tmps}/dotfiles-other/def
echo "ghi" > ${tmps}/dotfiles-other/ghi
echo "{{@@ _dotfile_abs_dst @@}}" >> ${tmps}/dotfiles-other/ghi
echo "zzz" > ${tmps}/dotfiles/zzz
echo "{{@@ _dotfile_abs_dst @@}}" >> ${tmps}/dotfiles/zzz
echo "sub" > ${tmps}/dotfiles/sub
echo "{{@@ _dotfile_abs_dst @@}}" >> ${tmps}/dotfiles/sub
# install
cd ${ddpath} | ${bin} files -c ${cfg1} -p p0 -V | grep f_def
@@ -123,6 +133,10 @@ cd ${ddpath} | ${bin} files -c ${cfg1} -p p3 -V | grep f_zzz
cd ${ddpath} | ${bin} files -c ${cfg1} -p pup -V | grep f_sub
cd ${ddpath} | ${bin} files -c ${cfg1} -p psubsub -V | grep f_sub
# test compare too
cd ${ddpath} | ${bin} install -c ${cfg1} -p p2 -V
cd ${ddpath} | ${bin} compare -c ${cfg1} -p p2 -V
## CLEANING
rm -rf ${tmps} ${tmpd}