mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-12 09:54:36 +01:00
254822da91
Signed-off-by: SergeySlice <sergey.slice@gmail.com>
17 lines
307 B
Bash
Executable File
17 lines
307 B
Bash
Executable File
#!/bin/bash
|
||
#
|
||
# alternate build for CloverV2
|
||
|
||
cd "$(dirname $([ -L $0 ] && readlink $0 || echo $0))"
|
||
ROOT="$PWD"
|
||
SYMROOT="${ROOT}"/sym
|
||
REVISION=$(git describe --tags $(git rev-list --tags --max-count=1))
|
||
|
||
zip -qr CloverV2-${REVISION}.zip CloverV2
|
||
mv CloverV2-${REVISION}.zip $SYMROOT
|
||
|
||
open sym
|
||
|
||
exit 0
|
||
|