From 346a86dae08a3a9dac2f14e7525d30eccaa84718 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 19 Jul 2019 14:51:42 +0200 Subject: [PATCH] travis: Use apt-get instead apt It appears 'apt' is no longer available and the official documentation only mentions apt-get. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f5417cb70..47e9ef059 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ before_install: - wget https://services.gradle.org/distributions/gradle-${GRADLE_VERSION}-all.zip - unzip -q gradle-${GRADLE_VERSION}-all.zip - export PATH="$(pwd)/gradle-${GRADLE_VERSION}/bin:$PATH" - - sudo apt install graphviz + - sudo apt-get install graphviz install: gradle assemble --stacktrace