mirror of
https://github.com/Matir/skel.git
synced 2026-05-26 05:29:09 -07:00
Fix extra dot.
This commit is contained in:
@@ -56,9 +56,9 @@ function install_basic_dir {
|
|||||||
DESTDIR="${2}"
|
DESTDIR="${2}"
|
||||||
find "${SRCDIR}" -type f -print | \
|
find "${SRCDIR}" -type f -print | \
|
||||||
while read file ; do
|
while read file ; do
|
||||||
TARGET="${2}/.${file#${SRCDIR}/}"
|
TARGET="${2}/${file#${SRCDIR}/}"
|
||||||
mkdir -p `dirname "${TARGET}"`
|
mkdir -p `dirname "${TARGET}"`
|
||||||
ln -s -f "${file}" "${TARGET}"
|
echo ln -s -f "${file}" "${TARGET}"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user