13 lines
268 B
Bash
13 lines
268 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd /cygdrive/c/Dev
|
||
|
|
||
|
# Get version number
|
||
|
read version < ./lux/Kernel/include/version.h
|
||
|
version=${version##"#define OS_BUILD \""}
|
||
|
version=${version%%"\""}
|
||
|
|
||
|
echo "Packing lux operating system build $version ..."
|
||
|
|
||
|
# Pack files
|
||
|
tar cfj lux-$version.tar.bz2 lux/
|