We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53305aa commit 33bf181Copy full SHA for 33bf181
.github/workflows/test.yml
@@ -51,13 +51,13 @@ jobs:
51
perl -e "use $module; 1;" > /dev/null 2>/dev/null || echo $module
52
done | xargs
53
)
54
+ command -v cover >/dev/null 2>/dev/null || APT_PACKAGES=libdevel-cover-perl
55
[ -z "$cpan_modules" ] || command -v cpanm >/dev/null 2>/dev/null || curl -s -S -L https://cpanmin.us | perl - --sudo App::cpanminus
56
command -v jd && HAS_JD=1 || HAS_JD=
57
[ -n "$HAS_JD" ] || command -v go >/dev/null 2>/dev/null || GO_PACKAGE=" golang"
- APT_PACKAGES="$GO_PACKAGE"
58
+ APT_PACKAGES="$APT_PACKAGES$GO_PACKAGE"
59
[ -z "$APT_PACKAGES" ] ||
60
(
61
sudo apt-get install -y $APT_PACKAGES ||
62
sudo apt-get update &&
63
sudo apt-get install -y $APT_PACKAGES
0 commit comments