Skip to content
Snippets Groups Projects
Commit 68dbd232 authored by Kerri Wait's avatar Kerri Wait
Browse files

Update symlinker.sh.j2 to fix Kerri's stupid typo

parent 1b3e488c
No related branches found
No related tags found
1 merge request!539Update symlinker.sh.j2 to fix Kerri's stupid typo
......@@ -18,10 +18,10 @@ if [ ! -d $symlinkdest ]; then
fi
# Iterate over directories inside the original fs, create symlinks if they do _not_ exist
for sourcepath in `find "$originalfs" -maxdepth 1 -mindepth 1 -type d`; do
for sourcepath in `find "$originallfs" -maxdepth 1 -mindepth 1 -type d`; do
foldername=`basename "$sourcepath"`;
linkpath="$symlinkdest/$foldername";
if [ ! -L $linkpath ]; then
ln -sT $sourcepath $linkpath;
fi
done
\ No newline at end of file
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment