46 lines
1.5 KiB
Bash
Executable File
46 lines
1.5 KiB
Bash
Executable File
#!/bin/bash -l
|
|
#
|
|
# Copyright 2021. The KubeVela Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
source ./hack/color_print.sh
|
|
|
|
# get version name
|
|
version=$1
|
|
|
|
if [ ${#version} == 0 ]
|
|
then
|
|
error "version name shouldn't be empty"
|
|
info "example usage: make update-version version=v1.1"
|
|
exit 1
|
|
fi
|
|
|
|
# 1 remove latestVersion's sidebars.json
|
|
rm -rf ./versioned_sidebars/version-"${version}"-sidebars.json
|
|
success "remove ./versioned_sidebars/version-${version}-sidebars.json"
|
|
|
|
# 2 remove ./version_docs/version-${version}
|
|
rm -rf ./versioned_docs/version-"${version}"
|
|
success "remove ./versioned_docs/version-${version}"
|
|
|
|
# 3 remove ${version} in versions.json
|
|
sed -i.bak "/${version}/d" versions.json
|
|
rm -rf versions.json.bak
|
|
success "update versions.json"
|
|
|
|
# 4 remove ./i18n/zh/docusaurus-plugin-content-docs/version-"${version}".json
|
|
rm -rf ./i18n/zh/docusaurus-plugin-content-docs/version-"${version}".json
|
|
rm -rf ./i18n/zh/docusaurus-plugin-content-docs/version-"${version}"
|