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 | |
parent | Fix bootstrap script (diff) |
Directory linking fix; symlinks fix
-rwxr-xr-x | script/bootstrap | 2 | ||||
l--------- | vim/vim.symlink/ftdetect/clean.vim | 2 | ||||
l--------- | vim/vim.symlink/ftplugin/clean.vim | 2 | ||||
l--------- | vim/vim.symlink/syntax/clean.vim | 2 |
4 files changed, 4 insertions, 4 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 diff --git a/vim/vim.symlink/ftdetect/clean.vim b/vim/vim.symlink/ftdetect/clean.vim index 3d5fa15..4235b71 120000 --- a/vim/vim.symlink/ftdetect/clean.vim +++ b/vim/vim.symlink/ftdetect/clean.vim @@ -1 +1 @@ -../vim-clean/ftdetect/clean.vim
\ No newline at end of file +../../vim-clean/ftdetect/clean.vim
\ No newline at end of file diff --git a/vim/vim.symlink/ftplugin/clean.vim b/vim/vim.symlink/ftplugin/clean.vim index d273482..1e2475d 120000 --- a/vim/vim.symlink/ftplugin/clean.vim +++ b/vim/vim.symlink/ftplugin/clean.vim @@ -1 +1 @@ -../vim-clean/ftplugin/clean.vim
\ No newline at end of file +../../vim-clean/ftplugin/clean.vim
\ No newline at end of file diff --git a/vim/vim.symlink/syntax/clean.vim b/vim/vim.symlink/syntax/clean.vim index 722311b..5357695 120000 --- a/vim/vim.symlink/syntax/clean.vim +++ b/vim/vim.symlink/syntax/clean.vim @@ -1 +1 @@ -../vim-clean/syntax/clean.vim
\ No newline at end of file +../../vim-clean/syntax/clean.vim
\ No newline at end of file |