Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/args.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ copyright_year: 2019
# when archive_landing=true, we're building the landing page for archive.istio.io
preliminary: false
archive: false
archive_landing: false
archive_landing: true

# When archive=true above, these values must be filled in
archive_date: YYYY-MM-DD
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_site.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/bash

# Copyright Istio Authors
#
Expand Down
7 changes: 6 additions & 1 deletion scripts/gen_archive_site.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/bash
#!/bin/bash

# Copyright Istio Authors
#
Expand Down Expand Up @@ -73,13 +73,18 @@ for rel in "${TOBUILD_JEKYLL[@]}"; do

bundle install
bundle exec jekyll build --config _config.yml,config_override.yml
bundle clean --force

mv _site "${TMP}/archive/${NAME}"
echo "- name: \"${NAME}\"" >> "${TMP}/archives.yml"

git clean -f
done

# delete this pesky command as it overrides the sass version we explicitly installed and want to be using
# shellcheck disable=SC2230
rm -fr "$(which sass)"

echo "### Building landing page"
popd || exit
popd || exit
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_site.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/bash
#!/bin/bash

# Copyright Istio Authors
#
Expand Down
2 changes: 1 addition & 1 deletion scripts/opt_site.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/bin/bash

# Copyright Istio Authors
#
Expand Down