mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
Changed SDK release folder naming (#350)
This commit is contained in:
parent
98bbea3e9c
commit
f97ca26b01
@ -1,10 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
#
|
||||
# Description: Releases the current build files as an SDK in release/TactilitySDK
|
||||
# This deployment is used when compiling apps in ./ExternalApps
|
||||
# Description: Releases the current build files as an SDK in release/TactilitySDK-[platform]
|
||||
# This deployment is used when compiling new SDK features for apps.
|
||||
#
|
||||
|
||||
rm -rf release/TactilitySDK
|
||||
./Buildscripts/release-sdk.sh release/TactilitySDK
|
||||
config_idf_target=`cat sdkconfig | grep CONFIG_IDF_TARGET=`
|
||||
idf_target=${config_idf_target:19:-1}
|
||||
sdk_path=release/TactilitySDK-${idf_target}
|
||||
rm -rf ${sdk_path}
|
||||
./Buildscripts/release-sdk.sh ${sdk_path}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user