Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/spellchecker-cli-6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ForestEckhardt authored May 21, 2024
2 parents 0897724 + 6fe67cf commit 721473c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/docs/howto/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,6 @@ details on how to access the SBOM supplied by the buildpacks.
<!-- Paketo -->
[paketo/PHP-scan-directory]:{{< ref "docs/reference/php-reference#php_ini_scan_dir" >}}
[paketo/custom-PHP-configuration]:{{< ref "docs/reference/php-reference#configure-php-with-a-custom-ini-file">}}
[paketo/override-FPM-configuration]:{{< ref" docs/howto/php#override-default-fpm-configuration" >}}
[paketo/override-FPM-configuration]:{{< ref "docs/howto/php#override-default-fpm-configuration" >}}
[paketo/SBOM]:{{< ref "/docs/howto/sbom" >}}
<!-- spellchecker-enable -->
2 changes: 1 addition & 1 deletion layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{{ $navTheme = "nav-link--desktop--dark" }}
{{ end }}
<header class="{{ $backgroundColor }}{{ with .context.File }}{{ if in .Path "docs" }}{{ "header--narrow" }}{{ end }}{{ end }}">
{{ if in .context.File.Path "docs" }}
{{ if in .File.Path "docs" }}
<a class="paketo-p-logo" href="/">
<img class="paketo-p-logo__image" src="/v2/images/logo-paketo-p.svg" alt="Paketo Buildpacks Homepage">
</a>
Expand Down
4 changes: 2 additions & 2 deletions scripts/.util/tools.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"hugo": "v0.122.0",
"muffet": "v2.9.3"
"hugo": "v0.126.1",
"muffet": "v2.10.1"
}
6 changes: 3 additions & 3 deletions scripts/.util/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ function util::tools::muffet::install() {
local os
case "$(uname)" in
"Darwin")
os="Darwin_x86_64"
os="darwin_amd64"
;;

"Linux")
os="Linux_x86_64"
os="linux_amd64"
;;

*)
Expand All @@ -100,7 +100,7 @@ function util::tools::muffet::install() {
version="$(jq -r .muffet "$(dirname "${BASH_SOURCE[0]}")/tools.json")"

util::print::title "Installing muffet ${version}"
curl "https://github.com/raviqqe/muffet/releases/download/${version}/muffet_${version#v}_${os}.tar.gz" \
curl "https://github.com/raviqqe/muffet/releases/download/${version}/muffet_${os}.tar.gz" \
--silent \
--location \
--output /tmp/muffet.tgz
Expand Down

0 comments on commit 721473c

Please sign in to comment.