blob: c704fc65e5f69168c4207fae850a9ea3235d973d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
# goto root dir (this script resides in src)
BASEDIR=`dirname $(readlink -f $0)`
cd ${BASEDIR}/../
cd src/vim-powerline
GENDIR="../../gen"
cp -r autoload doc plugin $GENDIR
|