ngeri / prepare-signing

Github action for prepare signing of an iOS application
MIT License
13 stars 11 forks source link

Add quotes to fix echo issue #8

Closed mcindea closed 3 years ago

mcindea commented 3 years ago

Double quotes in bash will solve the issue where it fails to echo the cert successfully. Will fix this issue.

With and without quotes:

[mihai@blueberry prepare-signing]$ b="1 line
> 2nd line"
[mihai@blueberry prepare-signing]$ echo $b
1 line 2nd line
[mihai@blueberry prepare-signing]$ echo "$b"
1 line
2nd line
[mihai@blueberry prepare-signing]$