Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 41358051 authored by Jason Kridner's avatar Jason Kridner
Browse files

Remove 0.1 version in list and move date to VERISON_TWEAK

parent afd57ccb
No related merge requests found
...@@ -133,7 +133,7 @@ html_context = { ...@@ -133,7 +133,7 @@ html_context = {
"pages_slug": pages_slug, "pages_slug": pages_slug,
"docs_url": docs_url, "docs_url": docs_url,
"current_version": version, "current_version": version,
"versions": ("latest", "0.0", "0.1"), "versions": ("latest", "0.0"),
"reference_links": { "reference_links": {
"About": "https://beagleboard.org/about", "About": "https://beagleboard.org/about",
"Donate": "https://beagleboard.org/donate", "Donate": "https://beagleboard.org/donate",
......
...@@ -7,8 +7,8 @@ apk add date ...@@ -7,8 +7,8 @@ apk add date
export VER_LATEST_MAJOR=0 export VER_LATEST_MAJOR=0
export VER_LATEST_MINOR=1 export VER_LATEST_MINOR=1
export VER_LATEST_EXTRA=rc export VER_LATEST_EXTRA=rc
export PATCHLEVEL=$(date +%Y%m%d) export PATCHLEVEL=
export VERSION_TWEAK=$(( $(date "+10#%H * 60 + 10#%M") )) export VERSION_TWEAK=$(date +%Y%m%d) $(( $(date "+10#%H * 60 + 10#%M") ))
if [ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]; then if [ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]; then
export VER_DIR=latest export VER_DIR=latest
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment