pull_to_vagrant.sh 435 B

1234567891011121314
  1. #!/bin/bash
  2. SRC=vagrant
  3. DST=wolfssl
  4. # synchronize without .git and .gitignore to avoid output files
  5. rsync --exclude .git --exclude-from .gitignore -rvt /$SRC/ ~/$DST/
  6. # synchronize everything else needed.
  7. rsync -rvt /$SRC/.git ~/$DST/
  8. rsync -rvt /$SRC/IDE ~/$DST/
  9. rsync -rvt /$SRC/mcapi ~/$DST/
  10. rsync -rvt /$SRC/mplabx ~/$DST/
  11. rsync -rvt /$SRC/certs ~/$DST/
  12. rsync -rvt /$SRC/configure.ac ~/$DST/