mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
17 lines
307 B
Plaintext
17 lines
307 B
Plaintext
|
#!/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
|
|||
|
|