Skip to content

Commit c259418

Browse files
veitajbodah
authored andcommitted
Fix issue-459 (#460)
Issue 459: manual_install.sh creates wrong directory hierarchy.
1 parent 49ca9b9 commit c259418

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

manual_install.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/bin/bash
22

3+
mkdir -p ~/.vim/
4+
35
for INSTALL_DIR in autoload compiler ftdetect ftplugin indent syntax
46
do
5-
mkdir -p ~/.vim/${INSTALL_DIR}
6-
cp -R ${INSTALL_DIR}/ ~/.vim/${INSTALL_DIR}
7+
cp -R ${INSTALL_DIR} ~/.vim/
78
done
9+

0 commit comments

Comments
 (0)