mirror of
https://github.com/devkitPro/buildscripts.git
synced 2026-03-22 10:04:31 -05:00
7 lines
338 B
Bash
Executable File
7 lines
338 B
Bash
Executable File
#!/bin/sh
|
|
DATESTRING=$(date +%Y)$(date +%m)$(date +%d)
|
|
cd .. && tar --exclude=*CVS* --exclude=.svn --exclude=.git --exclude=*.log --exclude=*.bz2 \
|
|
--exclude=*.gz --exclude=config.sh --exclude=.devkitARM* --exclude=.devkitPPC* \
|
|
--exclude=.devkitA64* --exclude=.gitignore \
|
|
-cvjf buildscripts-$DATESTRING.tar.bz2 buildscripts
|