Make Attributions markdown friendly
Signed-off-by: Paulo Gomes <paulo.gomes@weave.works>
This commit is contained in:
parent
f6029ab0f6
commit
42e4455100
|
@ -1,11 +1,11 @@
|
||||||
ATTRIBUTIONS
|
# Attributions
|
||||||
|
|
||||||
This application uses Open Source components. You can find the source
|
This application uses Open Source components. You can find the source
|
||||||
code of their open source projects along with license information below.
|
code of their open source projects along with license information below.
|
||||||
We acknowledge and are grateful to these developers for their contributions
|
We acknowledge and are grateful to these developers for their contributions
|
||||||
to open source.
|
to open source.
|
||||||
|
|
||||||
libssh2:
|
## libssh2
|
||||||
|
|
||||||
Libssh2 was obtained in source-code form from its github repository:
|
Libssh2 was obtained in source-code form from its github repository:
|
||||||
https://github.com/libssh2/libssh2/
|
https://github.com/libssh2/libssh2/
|
||||||
|
@ -58,9 +58,9 @@ Copyright notice (https://raw.githubusercontent.com/libssh2/libssh2/main/COPYING
|
||||||
* OF SUCH DAMAGE.
|
* OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
**********************************************************************
|
||||||
|
|
||||||
libgit2:
|
## libgit2
|
||||||
|
|
||||||
Libgit2 was obtained in source-code form from its github repository:
|
Libgit2 was obtained in source-code form from its github repository:
|
||||||
https://github.com/libgit2/libgit2/
|
https://github.com/libgit2/libgit2/
|
||||||
|
@ -1198,9 +1198,9 @@ STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
||||||
OF THE POSSIBILITY OF SUCH DAMAGE.
|
OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
**********************************************************************
|
||||||
|
|
||||||
zlib:
|
## zlib
|
||||||
|
|
||||||
Zlib was obtained in binary form via official distribution channels.
|
Zlib was obtained in binary form via official distribution channels.
|
||||||
No changes were made to its original source code.
|
No changes were made to its original source code.
|
||||||
|
|
|
@ -2,17 +2,17 @@
|
||||||
|
|
||||||
set -eoux pipefail
|
set -eoux pipefail
|
||||||
|
|
||||||
SPLIT="----------------------------------------------------------------------"
|
SPLIT="**********************************************************************"
|
||||||
|
|
||||||
cat <<EOF > ATTRIBUTIONS.md
|
cat <<EOF > ATTRIBUTIONS.md
|
||||||
ATTRIBUTIONS
|
# Attributions
|
||||||
|
|
||||||
This application uses Open Source components. You can find the source
|
This application uses Open Source components. You can find the source
|
||||||
code of their open source projects along with license information below.
|
code of their open source projects along with license information below.
|
||||||
We acknowledge and are grateful to these developers for their contributions
|
We acknowledge and are grateful to these developers for their contributions
|
||||||
to open source.
|
to open source.
|
||||||
|
|
||||||
libssh2:
|
## libssh2
|
||||||
|
|
||||||
Libssh2 was obtained in source-code form from its github repository:
|
Libssh2 was obtained in source-code form from its github repository:
|
||||||
https://github.com/libssh2/libssh2/
|
https://github.com/libssh2/libssh2/
|
||||||
|
@ -25,7 +25,7 @@ $(curl -L https://raw.githubusercontent.com/libssh2/libssh2/master/COPYING)
|
||||||
|
|
||||||
${SPLIT}
|
${SPLIT}
|
||||||
|
|
||||||
libgit2:
|
## libgit2
|
||||||
|
|
||||||
Libgit2 was obtained in source-code form from its github repository:
|
Libgit2 was obtained in source-code form from its github repository:
|
||||||
https://github.com/libgit2/libgit2/
|
https://github.com/libgit2/libgit2/
|
||||||
|
@ -38,7 +38,7 @@ $(curl -L https://raw.githubusercontent.com/libgit2/libgit2/main/COPYING)
|
||||||
|
|
||||||
${SPLIT}
|
${SPLIT}
|
||||||
|
|
||||||
zlib:
|
## zlib
|
||||||
|
|
||||||
Zlib was obtained in binary form via official distribution channels.
|
Zlib was obtained in binary form via official distribution channels.
|
||||||
No changes were made to its original source code.
|
No changes were made to its original source code.
|
||||||
|
|
Loading…
Reference in New Issue