Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
falhassen authored Jan 26, 2024
2 parents 8bc22a4 + e85c765 commit 7f90a70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"semanticCommits": "disabled",
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
Expand Down
4 changes: 2 additions & 2 deletions scripts/update_javadocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ set -o pipefail
TEMP_DIR="/tmp/tmp_glide_javadoc"
JAVADOC_GH_PAGES_DIR="javadocs"

major_version=$(fgrep VERSION_MAJOR gradle.properties | cut -d '=' -f 2)
minor_version=$(fgrep VERSION_MINOR gradle.properties | cut -d '=' -f 2)
major_version=$(grep -F VERSION_MAJOR gradle.properties | cut -d '=' -f 2)
minor_version=$(grep -F VERSION_MINOR gradle.properties | cut -d '=' -f 2)
version="${major_version}${minor_version}0"

echo "Updating javadocs for ${version}"
Expand Down

0 comments on commit 7f90a70

Please sign in to comment.