Skip to content

Commit 21d4af5

Browse files
author
Christopher - Marcel Böddecker
committed
Merge branch 'next'
2 parents c73ed13 + d96d688 commit 21d4af5

File tree

2 files changed

+20
-17
lines changed

2 files changed

+20
-17
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@
1111

1212
* **templates:** changelog/release note formatting ([c8a7ee9](https://github.com/ExtendRealityLtd/DevOps/commit/c8a7ee9444849950903823b6b8708dcbae43744e))
1313

14+
## [3.10.0-next.1](https://github.com/ExtendRealityLtd/DevOps/compare/v3.9.0...v3.10.0-next.1) (2019-10-14)
15+
16+
#### Features
17+
18+
* **templates:** merge commit messages in changelog/release note ([53371ac](https://github.com/ExtendRealityLtd/DevOps/commit/53371ace542626dce2f1124b3d468376a7fde5ae))
19+
> This keeps paragraphs in the messages as is.
20+
21+
#### Bug Fixes
22+
23+
* **templates:** changelog/release note formatting ([c8a7ee9](https://github.com/ExtendRealityLtd/DevOps/commit/c8a7ee9444849950903823b6b8708dcbae43744e))
24+
1425
## [3.9.0](https://github.com/ExtendRealityLtd/DevOps/compare/v3.8.0...v3.9.0) (2019-10-14)
1526

1627

templates/steps/cd.yml

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,53 +9,45 @@ steps:
99
tarball=$(find . -name "*.tgz")
1010
tarballFilePaths=$(tar -tf $tarball)
1111
12-
for filePath in $tarballFilePaths
12+
while read -r filePath
1313
do
1414
case $filePath in
1515
*.meta)
1616
metaFilePath=$filePath
1717
found=false
1818
regularFilePath=${metaFilePath%.meta}
19-
for otherFilePath in $tarballFilePaths
19+
while read -r otherFilePath
2020
do
2121
case $otherFilePath in
2222
$regularFilePath/* | $regularFilePath*) # folder or file
23-
if [ $metaFilePath != $otherFilePath ]
23+
if [ "$metaFilePath" != "$otherFilePath" ]
2424
then
2525
found=true
2626
break
2727
fi;;
2828
esac
29-
done
29+
done <<< "$tarballFilePaths"
3030
if [ "$found" = false ]
3131
then
32-
echo "Missing file for Unity meta file '$metaFilePath'." >&2
32+
echo "Missing file for Unity meta file '${metaFilePath#"package/"}'." >&2
3333
fi;;
34-
esac
35-
done
36-
37-
for filePath in $tarballFilePaths
38-
do
39-
case $filePath in
40-
*.meta)
41-
;;
4234
*)
4335
regularFilePath=$filePath
4436
found=false
45-
for otherFilePath in $tarballFilePaths
37+
while read -r otherFilePath
4638
do
4739
case $otherFilePath in
4840
$regularFilePath.meta)
4941
found=true
5042
break;;
5143
esac
52-
done
44+
done <<< "$tarballFilePaths"
5345
if [ "$found" = false ]
5446
then
55-
echo "Missing Unity meta file for file '$regularFilePath'." >&2
47+
echo "Missing Unity meta file for file '${regularFilePath#"package/"}'." >&2
5648
fi;;
5749
esac
58-
done
50+
done <<< "$tarballFilePaths"
5951
6052
rm -f $tarball
6153
displayName: Check Unity .meta files

0 commit comments

Comments
 (0)