File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,8 @@ Snap (Snapcraft/Linux)
101
101
snap install dvc --classic
102
102
103
103
This corresponds to the latest tagged release.
104
- Add ``--edge `` for the latest ``master `` version.
104
+ Add ``--beta `` for the latest tagged release candidate,
105
+ or ``--edge `` for the latest ``master `` version.
105
106
106
107
Choco (Chocolatey/Windows)
107
108
--------------------------
Original file line number Diff line number Diff line change @@ -52,7 +52,11 @@ elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
52
52
fi
53
53
54
54
if [[ -n " $TRAVIS_TAG " ]]; then
55
- echo " export SNAP_CHANNEL=stable" >> env.sh
55
+ if [[ $( echo " $TRAVIS_TAG " | grep -E ' ^[0-9]+\.[0-9]+\.[0-9]+$' ) ]]; then
56
+ echo " export SNAP_CHANNEL=stable" >> env.sh
57
+ else
58
+ echo " export SNAP_CHANNEL=beta" >> env.sh
59
+ fi
56
60
else
57
61
echo " export SNAP_CHANNEL=edge" >> env.sh
58
62
fi
You can’t perform that action at this time.
0 commit comments