diff options
| author | “pengxuanzheng” <[email protected]> | 2022-03-02 10:35:26 +0000 |
|---|---|---|
| committer | 彭宣正 <[email protected]> | 2022-03-04 05:08:59 +0000 |
| commit | fce8d9749583465aa0e1ddc0cce3b299725cfb9f (patch) | |
| tree | cb94b6d6c5edf348e83c1f49f7000724d5d3aca2 | |
| parent | 16d71d2fe65c457308512dfadeb7d15c17d5eeae (diff) | |
🐞 fix(TSG-9807): 修复cache_size设置为0导致的内存快速消耗
| -rw-r--r-- | ci/travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/travis.sh b/ci/travis.sh index faadc35c..aee68c31 100644 --- a/ci/travis.sh +++ b/ci/travis.sh @@ -60,7 +60,7 @@ fi if [ -n "${UPLOAD_SYMBOL_FILES}" ]; then rpm -i $SYMBOL_TARGE*debuginfo*.rpm - _symbol_file=`find /usr/lib/debug/ -name "$SYMBOL_TARGET*.so*.debug"` + _symbol_file=`find /usr/lib/debug/ -name "*$SYMBOL_TARGET*.so*.debug"` cp $_symbol_file ${_symbol_file}info.${CI_COMMIT_SHORT_SHA} sentry-cli upload-dif -t elf ${_symbol_file}info.${CI_COMMIT_SHORT_SHA} fi
\ No newline at end of file |
