6 lines
180 B
Bash
6 lines
180 B
Bash
|
#!/bin/sh
|
||
|
mkdir -p dist
|
||
|
|
||
|
tar -czvf "dist/exint-$(date +%Y%m%d-%H%M%S).tar.gz" src/ include/ tests/ config/\
|
||
|
scripts/ toolchains/ tools/ README.md CMakeLists.txt mak .gitignore
|