fix pull.sh and add cmake-esque loader
This commit is contained in:
parent
9d98d9f776
commit
d9c8577f20
1 changed files with 3 additions and 2 deletions
5
pull.sh
5
pull.sh
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
for synced in `cat synced`; do
|
for synced in `cat synced`; do
|
||||||
echo -n $synced...
|
echo -n $synced...
|
||||||
mkdir -p `dirname -- $synced`
|
dir=`dirname -- $synced`
|
||||||
cp $HOME/$synced .
|
mkdir -p $dir
|
||||||
|
cp $HOME/$synced $dir
|
||||||
echo done
|
echo done
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue