mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
scripts: add SPDX-License-Identifier in files (#6215)
This commit is contained in:
parent
6366fb7ddf
commit
6637acf662
11 changed files with 16 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const glob = require('glob');
|
const glob = require('glob');
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# This script is executed by GitHub Actions for every successful push (on any branch, PR or not).
|
# This script is executed by GitHub Actions for every successful push (on any branch, PR or not).
|
||||||
set -ex
|
set -ex
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# This script is executed by GitHub Actions for every pull request opened.
|
# This script is executed by GitHub Actions for every pull request opened.
|
||||||
# It currently accomplishes the following objectives (for English pages only):
|
# It currently accomplishes the following objectives (for English pages only):
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# This script is executed by GitHub Actions when a PR is merged (i.e. in the `deploy` step).
|
# This script is executed by GitHub Actions when a PR is merged (i.e. in the `deploy` step).
|
||||||
set -ex
|
set -ex
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "PT Serif";
|
font-family: "PT Serif";
|
||||||
src: url("pt-serif-web-regular.ttf") format("truetype");
|
src: url("pt-serif-web-regular.ttf") format("truetype");
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
"""
|
"""
|
||||||
A Python script to generate a single PDF document with all the `tldr` pages. It works by generating
|
A Python script to generate a single PDF document with all the `tldr` pages. It works by generating
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
|
||||||
code {
|
code {
|
||||||
color: #b58900;
|
color: #b58900;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* SPDX-License-Identifier: MIT */
|
||||||
|
|
||||||
code {
|
code {
|
||||||
color: #dc322f
|
color: #dc322f
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
# SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
# This script is executed by GitHub Actions for every successful push (on any branch, PR or not).
|
# This script is executed by GitHub Actions for every successful push (on any branch, PR or not).
|
||||||
# It runs some basic tests on pages. If the build is also a PR, additional
|
# It runs some basic tests on pages. If the build is also a PR, additional
|
||||||
|
|
Loading…
Add table
Reference in a new issue