Travis: use travis_fold function for folds
Ref: 7cac7d393c/lib/travis/shell/generator/bash.rb (L109-L116)
This commit is contained in:
parent
3f9da4269d
commit
88cca77fdb
|
@ -115,13 +115,11 @@ install:
|
||||||
# Functions for custom Travis folds.
|
# Functions for custom Travis folds.
|
||||||
- |
|
- |
|
||||||
travis_fold_start() {
|
travis_fold_start() {
|
||||||
echo -n "travis_"
|
travis_fold start "$1"
|
||||||
echo "fold:start:$1"
|
|
||||||
travis_fold_current="$1"
|
travis_fold_current="$1"
|
||||||
}
|
}
|
||||||
travis_fold_end() {
|
travis_fold_end() {
|
||||||
echo -n "travis_"
|
travis_fold end "$travis_fold_current"
|
||||||
echo "fold:end:$travis_fold_current"
|
|
||||||
}
|
}
|
||||||
travis_run_in_fold() {
|
travis_run_in_fold() {
|
||||||
travis_fold_start "$1"
|
travis_fold_start "$1"
|
||||||
|
|
Loading…
Reference in New Issue