diff options
author | Camil Staps | 2015-10-29 14:00:34 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-30 19:11:06 +0100 |
commit | a241cd96b7106d92ee8fb5ed25ee68518438528a (patch) | |
tree | d94206debeedd53dbe33062b04c4c7c6292f4fc6 /script/bootstrap | |
parent | Fix bootstrap script (diff) |
Directory linking fix; symlinks fix
Diffstat (limited to 'script/bootstrap')
-rwxr-xr-x | script/bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/bootstrap b/script/bootstrap index d6e0a30..ba61da9 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -106,7 +106,7 @@ link_directory () { for f in "$src"/* do - this_dst="$dst/$(basename "${f%.*}")" + this_dst="$dst/$(basename "$f")" link "$f" "$this_dst" done fi |