Back off on the specificity for git installation

Version number got bumped, nothing was being installed.
This commit is contained in:
Jean-Paul Calderone 2019-01-25 16:57:56 -05:00
parent cdf6e90dd5
commit 7783433369

View File

@ -341,7 +341,14 @@ jobs:
name: "Install Git"
command: |
slackpkg update
slackpkg install openssh-7.4p1 git-2.14.4 </dev/null
# Be careful with slackpkg. If the package name given doesn't
# match anything, slackpkg still claims to succeed but you're
# totally screwed. Slackware updates versions of packaged
# software so including too much version prefix is a good way to
# have your install commands suddenly begin not installing
# anything.
slackpkg install openssh-7 git-2 </dev/null
- "checkout"