Limit branch length

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-12-15 12:29:57 +01:00
parent 3f9c6dc4c3
commit 0419fd00c8
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
2 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,5 @@
#!/bin/bash #!/bin/bash
set -e set -euo pipefail
set -o pipefail
git checkout -b $(slugify "$@") git checkout -b $(slugify -l 35 "$@")

View File

@ -1,7 +1,6 @@
#!/bin/bash #!/bin/bash
set -eu set -euo pipefail
set -o pipefail
source "${HOME}/bin/script_framework.sh" source "${HOME}/bin/script_framework.sh"