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 libexec/kctl-env-list-remote
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ PER_PAGE=100

api_base="https://api.github.com/repos/kubernetes/kubernetes/tags"

curl_args=(-sSL)
curl_args=(-sSLf)
if [[ -n "${GITHUB_TOKEN:-}" ]]; then
curl_args+=(-H "Authorization: Bearer ${GITHUB_TOKEN}")
fi
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/control
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Source: kctl-env
Section: utils
Priority: optional
Maintainer: kctl-env Maintainers <sen.net@hotmail.com>
Maintainer: kctl-env Maintainers <kctl-env@example.com>
Standards-Version: 4.6.2
Build-Depends: debhelper-compat (= 13)

Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [[ -f "$changelog_file" ]]; then
echo
echo " * Release $new_version"
echo
echo " -- kctl-env Maintainers <sen.net@hotmail.com> $change_date"
echo " -- kctl-env Maintainers <kctl-env@example.com> $change_date"
echo
cat "$changelog_file"
} > "$tmp"
Expand All @@ -44,7 +44,7 @@ spec_file="packaging/rpm/kctl-env.spec"
if [[ -f "$spec_file" ]]; then
sed -i "s/^Version:\s*.*/Version: $new_version/" "$spec_file"
# Update changelog
sed -i "1 a\\* $(date +"%a %b %d %Y") kctl-env Maintainers <sen.net@hotmail.com> - $new_version-1\\n- Release $new_version" "$spec_file"
sed -i "1 a\\* $(date +"%a %b %d %Y") kctl-env Maintainers <kctl-env@example.com> - $new_version-1\\n- Release $new_version" "$spec_file"
fi

# Commit changes
Expand Down