Files
rk35xx-android14/system/chre/chre_api/archive_chre_api.sh
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

21 lines
539 B
Bash
Executable File

#!/bin/bash
# Quit if any command produces an error.
set -e
# Parse variables
MAJOR_VERSION=$1
: ${MAJOR_VERSION:?
"You must specify the major version of the API to be archived."
"Usage ./archive_chre_api.sh <major_version> <minor_version>"}
MINOR_VERSION=$2
: ${MINOR_VERSION:?
"You must specify the minor version of the API to be archived."
"Usage ./archive_chre_api.sh <major_version> <minor_version>"}
DIRECTORY=v${MAJOR_VERSION}_${MINOR_VERSION}
mkdir legacy/$DIRECTORY
cp -r include/chre_api/* legacy/$DIRECTORY