mirror of
https://github.com/danog/dart-sass.git
synced 2024-12-02 17:49:38 +01:00
58a525c435
Getting them from a file made the process of updating either set of credentials convoluted and error-prone, and meant that if one needed to be updated both had to be re-encrypted. This also updates the pub credentials to accommodate the new scope, as described in dart-lang/pub-dev#2281.
12 lines
346 B
Bash
12 lines
346 B
Bash
# Copyright 2018 Google Inc. Use of this source code is governed by an MIT-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/MIT.
|
|
|
|
# Prints the invocation of a command and then runs that command, in the same way
|
|
# Travis's internal infrastructure does.
|
|
function travis_cmd() {
|
|
echo "\$ $@"
|
|
"$@"
|
|
}
|
|
|