We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37cc8bf commit 3a0b3a5Copy full SHA for 3a0b3a5
build/travis-ci/depinstall-osx.sh
@@ -6,6 +6,13 @@ DEPDIR=${SCRIPTDIR}/deps
6
mkdir -p "${DEPDIR}"
7
cd "${DEPDIR}"
8
9
+## LATER: fetch the lastest GemDependencies package via
10
+github_list_releaseartifacts() {
11
+ # call as: github_list_releaseartifacts umlaeute/Gem-dependencies
12
+ curl -s https://api.github.com/repos/$1/releases/latest \
13
+ | jq -r ".assets[] | select(.name | test(\"${spruce_type}\")) | .browser_download_url"
14
+}
15
+
16
brewinstall() {
17
brew install "$@" || (brew upgrade "$@" && brew cleanup "$@")
18
}
0 commit comments