File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ cp util/gh-pages/index.html out/master
11
11
python3 ./util/export.py out/master/lints.json
12
12
13
13
if [[ -n $TAG_NAME ]]; then
14
- echo " Save the doc for the current tag ($TAG_NAME ) and point current / to it"
14
+ echo " Save the doc for the current tag ($TAG_NAME ) and point stable / to it"
15
15
cp -r out/master " out/$TAG_NAME "
16
- rm -f out/current
17
- ln -s " $TAG_NAME " out/current
16
+ rm -f out/stable
17
+ ln -s " $TAG_NAME " out/stable
18
18
fi
19
19
20
20
# Generate version index that is shown as root index page
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ <h3 class="panel-title">
64
64
65
65
$scope . versionOrder = function ( v ) {
66
66
if ( v === 'master' ) { return Infinity ; }
67
- if ( v === 'current ' ) { return Number . MAX_VALUE ; }
67
+ if ( v === 'stable ' ) { return Number . MAX_VALUE ; }
68
68
69
69
return $scope . normalizeVersion ( v )
70
70
. split ( '.' )
Original file line number Diff line number Diff line change 10
10
def key (v ):
11
11
if v == 'master' :
12
12
return float ('inf' )
13
- if v == 'current ' :
13
+ if v == 'stable ' :
14
14
return sys .maxsize
15
15
16
16
v = v .replace ('v' , '' ).replace ('rust-' , '' )
You can’t perform that action at this time.
0 commit comments