6 lines
234 B
Bash
Executable file
6 lines
234 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_ROOT=`dirname ${0}`
|
|
package_date=`date +%Y-%m-%d_%H%M%S`
|
|
|
|
tar -pczf "${SCRIPT_ROOT}/../sapphic_${package_date}.tar.gz" --exclude="${SCRIPT_ROOT}/live-build/cache" --exclude="${SCRIPT_ROOT}/output" "${SCRIPT_ROOT}"
|