mirror of
https://github.com/JHUAPL/Terrasaur.git
synced 2026-01-09 14:28:04 -05:00
11 lines
243 B
Bash
Executable File
11 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
root=SBCLT_support-$(date -u +"%Y.%m.%d")
|
|
mkdir -p dist/${root}
|
|
rsync -a README.md altwg buildAll.bash spice vtk dist/${root}
|
|
cd dist
|
|
tar cfz ${root}.tar.gz ./${root}
|
|
/bin/rm -fr ./${root}
|
|
|
|
echo -e "Created ./dist/${root}.tar.gz"
|