Skip to content

Commit a16f0bd

Browse files
authored
Merge pull request #40 from devlinjunker/patch-0.5.1
patch-0.5.1
2 parents b1a799e + b65229c commit a16f0bd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
Version: 0.5.0
2+
Version: 0.5.1
33
---
44

55
# Example - CII 100%

scripts/release/release-prep-upmerge.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#! /bin/bash
22

3-
set -eu
3+
# cannot do `set -e` here as we expect an conflict error during the merge
4+
set -u
45

56
git checkout develop;
67

@@ -9,7 +10,7 @@ git checkout develop;
910

1011
# upmerge from branch input
1112
git pull;
12-
git merge "$1" 2>/dev/null; # ignore error we expect here
13+
git merge "$1";
1314

1415
# TODO: Resolve conflicts better (maybe https://github.com/jakub-g/git-resolve-conflict)
1516
git reset README.md;

0 commit comments

Comments
 (0)