Revision b71cf0d0fff4d17f788a01c55affd79715731d46 authored by Joe Stringer on 30 September 2020, 22:13:35 UTC, committed by Robin Hahling on 01 October 2020, 08:11:45 UTC
Due to an extra `v` in the branch name, this script would fail with:

  $ ~/git/cilium/contrib/release/start-release.sh v1.6.12 128
  fatal: 'origin/vv1.6' is not a commit and a branch 'pr/prepare-v1.6.12' cannot be created from it

  Signal ERR caught!

  Traceback (line function script):
  62 main /home/joe/git/cilium/contrib/release/start-release.sh

Fix it.

While we're at it, update the instructions at the end for next
steps, since there's also now a `submit-backport.sh` script to send the
PR from the CLI.

Signed-off-by: Joe Stringer <joe@cilium.io>
1 parent 57d3473
Raw File
cilium-dev.Dockerfile.dockerignore
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so

# LLVM IR files
*.ll
*.ll-*

# Folders
_obj
_test
_build/
hack/

.git/objects/
vendor/
examples/
api/
Documentation/


# Architecture specific extensions/prefixes
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go

*.exe
*.test
*.prof

*.swn
*.swp
.vagrant/
vagrant.kubeconfig
coverage.out
coverage-all.out
coverage-all.html

.DS_Store
.idea/
*.plist

*_bash_completion
*.swo
outgoing

*cscope.files
*cscope.out
*cscope.in.out
*cscope.po.out
*tags

man/

# Test files
test/tmp.yaml
test/*_service_manifest.json
test/*_manifest.yaml
test/*_policy.json
test/*.xml
tests/cilium-files
test/test_results
test/*.json
test/.vagrant

# Emacs backup files
*~

# Automatically generated when needed
.dockerignore

# Temporary files that allow build containers/VMs work without git

test/bpf/_results

# generated from make targets
*.ok
back to top