2024-08-20 21:48:33 +03:00
|
|
|
#!/bin/sh
|
2015-01-29 18:17:08 +03:00
|
|
|
SRC=vagrant
|
|
|
|
DST=wolfssl
|
2014-08-11 22:27:57 +04:00
|
|
|
|
|
|
|
# synchronize without .git and .gitignore to avoid output files
|
2015-01-29 18:17:08 +03:00
|
|
|
rsync --exclude .git --exclude-from .gitignore -rvt /$SRC/ ~/$DST/
|
2014-08-11 22:27:57 +04:00
|
|
|
|
|
|
|
# synchronize everything else needed.
|
2015-01-29 18:17:08 +03:00
|
|
|
rsync -rvt /$SRC/.git ~/$DST/
|
|
|
|
rsync -rvt /$SRC/IDE ~/$DST/
|
|
|
|
rsync -rvt /$SRC/mcapi ~/$DST/
|
|
|
|
rsync -rvt /$SRC/mplabx ~/$DST/
|
2015-11-02 21:51:01 +03:00
|
|
|
rsync -rvt /$SRC/certs ~/$DST/
|
2015-01-29 18:17:08 +03:00
|
|
|
rsync -rvt /$SRC/configure.ac ~/$DST/
|