mirror of
https://github.com/m5stack/StackFlow.git
synced 2026-05-20 11:32:11 -07:00
11 lines
314 B
Bash
11 lines
314 B
Bash
|
|
#!/bin/bash
|
||
|
|
# 当 static_lib 的版本更新后可以使用这个脚本将更新后的 static_lib 打包然后上传。
|
||
|
|
|
||
|
|
cd ../static_lib
|
||
|
|
version=$(cat version)
|
||
|
|
tar zcvf ../static_lib_${version}.tar.gz .
|
||
|
|
cd ..
|
||
|
|
ossutil cp static_lib_${version}.tar.gz oss://m5stack/resource/linux/llm/static_lib_${version}.tar.gz
|
||
|
|
|
||
|
|
|