Skip to content

Commit

Permalink
chore: optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed Mar 18, 2024
1 parent 99cba84 commit a387f53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/update_headers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ temp_file="${destination}/temp_file.zip"
curl -L -o "$temp_file" "$url"

# # 解压文件
unzip -o "$temp_file" -d "$destination"
unzip -o "$temp_file" -d "$destination" > /dev/null

# # 删除临时文件
rm "$temp_file"
Expand All @@ -49,7 +49,7 @@ nativeSDK="$destination/Agora_Native_SDK_for_Windows_FULL"
mkdir -p $nativeSDK

# # 将文件移动到目标位置
mv "$nativeSDK/sdk/high_level_api/include" "$destination"
mv "$nativeSDK/sdk/high_level_api/include" "$destination/include"

# # 删除解压后的文件
rm -rf "$nativeSDK"

0 comments on commit a387f53

Please sign in to comment.