mirror of
https://github.com/openharmony/third_party_re2.git
synced 2026-07-01 09:20:39 -04:00
9a19e394d9
Signed-off-by:ganchuantao1<ganchuantao1@huawei.com> Signed-off-by: ganchuantao1 <ganchuantao1@huawei.com>
16 lines
380 B
Bash
Executable File
16 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
# This library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation version 2.1
|
|
# of the License.
|
|
#
|
|
# Copyright(c) 2023 Huawei Device Co., Ltd.
|
|
|
|
set -e
|
|
cd $1
|
|
if [ -d "re2" ];then
|
|
rm -rf re2
|
|
fi
|
|
tar zxvf re2-2021-11-01.tar.gz
|
|
mv re2-2021-11-01 re2
|
|
exit 0 |