From 8ac7f0fb9cb06b4dff446df731bb5a744001666e Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Thu, 16 Mar 2023 09:47:07 +0100 Subject: [PATCH] move to truetool folder --- .../.github}/renovate-config.js | 0 {.github => truetool/.github}/renovate.json5 | 0 .../.github}/workflows/renovate.yml | 0 .../.github}/workflows/shellcheck.yml | 0 truetool/.pre-commit-config.yaml | 21 +++++++++++++++++++ LICENSE => truetool/LICENSE | 0 README.md => truetool/README.md | 0 {bin => truetool/bin}/truetool | 0 bootstrap => truetool/bootstrap | 0 {functions => truetool/functions}/LICENSE | 0 {functions => truetool/functions}/backup.sh | 0 {functions => truetool/functions}/dns.sh | 0 {functions => truetool/functions}/mount.sh | 0 {functions => truetool/functions}/readme.md | 0 .../functions}/update_apps.sh | 0 {includes => truetool/includes}/backup.sh | 0 {includes => truetool/includes}/chores.sh | 0 {includes => truetool/includes}/help.sh | 0 {includes => truetool/includes}/mount.sh | 0 {includes => truetool/includes}/no_args.sh | 0 {includes => truetool/includes}/patch.sh | 0 {includes => truetool/includes}/title.sh | 0 .../includes}/update_self.sh | 0 {patch => truetool/patch}/2212/HP1.patch | 0 {patch => truetool/patch}/2212/HP2.patch | 0 truetool.sh => truetool/truetool.sh | 0 26 files changed, 21 insertions(+) rename {.github => truetool/.github}/renovate-config.js (100%) rename {.github => truetool/.github}/renovate.json5 (100%) rename {.github => truetool/.github}/workflows/renovate.yml (100%) rename {.github => truetool/.github}/workflows/shellcheck.yml (100%) create mode 100644 truetool/.pre-commit-config.yaml rename LICENSE => truetool/LICENSE (100%) rename README.md => truetool/README.md (100%) rename {bin => truetool/bin}/truetool (100%) mode change 100755 => 100644 rename bootstrap => truetool/bootstrap (100%) mode change 100755 => 100644 rename {functions => truetool/functions}/LICENSE (100%) rename {functions => truetool/functions}/backup.sh (100%) mode change 100755 => 100644 rename {functions => truetool/functions}/dns.sh (100%) mode change 100755 => 100644 rename {functions => truetool/functions}/mount.sh (100%) mode change 100755 => 100644 rename {functions => truetool/functions}/readme.md (100%) rename {functions => truetool/functions}/update_apps.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/backup.sh (100%) rename {includes => truetool/includes}/chores.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/help.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/mount.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/no_args.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/patch.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/title.sh (100%) mode change 100755 => 100644 rename {includes => truetool/includes}/update_self.sh (100%) mode change 100755 => 100644 rename {patch => truetool/patch}/2212/HP1.patch (100%) rename {patch => truetool/patch}/2212/HP2.patch (100%) rename truetool.sh => truetool/truetool.sh (100%) mode change 100755 => 100644 diff --git a/.github/renovate-config.js b/truetool/.github/renovate-config.js similarity index 100% rename from .github/renovate-config.js rename to truetool/.github/renovate-config.js diff --git a/.github/renovate.json5 b/truetool/.github/renovate.json5 similarity index 100% rename from .github/renovate.json5 rename to truetool/.github/renovate.json5 diff --git a/.github/workflows/renovate.yml b/truetool/.github/workflows/renovate.yml similarity index 100% rename from .github/workflows/renovate.yml rename to truetool/.github/workflows/renovate.yml diff --git a/.github/workflows/shellcheck.yml b/truetool/.github/workflows/shellcheck.yml similarity index 100% rename from .github/workflows/shellcheck.yml rename to truetool/.github/workflows/shellcheck.yml diff --git a/truetool/.pre-commit-config.yaml b/truetool/.pre-commit-config.yaml new file mode 100644 index 00000000..cce767d4 --- /dev/null +++ b/truetool/.pre-commit-config.yaml @@ -0,0 +1,21 @@ +# See https://pre-commit.com for more information +repos: +- repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.1.10 + hooks: + - id: remove-tabs + +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.0.1 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: fix-byte-order-marker + - id: mixed-line-ending + - id: check-merge-conflict + - id: check-case-conflict + - id: check-executables-have-shebangs + - id: check-docstring-first + - id: check-symlinks + - id: destroyed-symlinks + - id: fix-byte-order-marker diff --git a/LICENSE b/truetool/LICENSE similarity index 100% rename from LICENSE rename to truetool/LICENSE diff --git a/README.md b/truetool/README.md similarity index 100% rename from README.md rename to truetool/README.md diff --git a/bin/truetool b/truetool/bin/truetool old mode 100755 new mode 100644 similarity index 100% rename from bin/truetool rename to truetool/bin/truetool diff --git a/bootstrap b/truetool/bootstrap old mode 100755 new mode 100644 similarity index 100% rename from bootstrap rename to truetool/bootstrap diff --git a/functions/LICENSE b/truetool/functions/LICENSE similarity index 100% rename from functions/LICENSE rename to truetool/functions/LICENSE diff --git a/functions/backup.sh b/truetool/functions/backup.sh old mode 100755 new mode 100644 similarity index 100% rename from functions/backup.sh rename to truetool/functions/backup.sh diff --git a/functions/dns.sh b/truetool/functions/dns.sh old mode 100755 new mode 100644 similarity index 100% rename from functions/dns.sh rename to truetool/functions/dns.sh diff --git a/functions/mount.sh b/truetool/functions/mount.sh old mode 100755 new mode 100644 similarity index 100% rename from functions/mount.sh rename to truetool/functions/mount.sh diff --git a/functions/readme.md b/truetool/functions/readme.md similarity index 100% rename from functions/readme.md rename to truetool/functions/readme.md diff --git a/functions/update_apps.sh b/truetool/functions/update_apps.sh old mode 100755 new mode 100644 similarity index 100% rename from functions/update_apps.sh rename to truetool/functions/update_apps.sh diff --git a/includes/backup.sh b/truetool/includes/backup.sh similarity index 100% rename from includes/backup.sh rename to truetool/includes/backup.sh diff --git a/includes/chores.sh b/truetool/includes/chores.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/chores.sh rename to truetool/includes/chores.sh diff --git a/includes/help.sh b/truetool/includes/help.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/help.sh rename to truetool/includes/help.sh diff --git a/includes/mount.sh b/truetool/includes/mount.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/mount.sh rename to truetool/includes/mount.sh diff --git a/includes/no_args.sh b/truetool/includes/no_args.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/no_args.sh rename to truetool/includes/no_args.sh diff --git a/includes/patch.sh b/truetool/includes/patch.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/patch.sh rename to truetool/includes/patch.sh diff --git a/includes/title.sh b/truetool/includes/title.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/title.sh rename to truetool/includes/title.sh diff --git a/includes/update_self.sh b/truetool/includes/update_self.sh old mode 100755 new mode 100644 similarity index 100% rename from includes/update_self.sh rename to truetool/includes/update_self.sh diff --git a/patch/2212/HP1.patch b/truetool/patch/2212/HP1.patch similarity index 100% rename from patch/2212/HP1.patch rename to truetool/patch/2212/HP1.patch diff --git a/patch/2212/HP2.patch b/truetool/patch/2212/HP2.patch similarity index 100% rename from patch/2212/HP2.patch rename to truetool/patch/2212/HP2.patch diff --git a/truetool.sh b/truetool/truetool.sh old mode 100755 new mode 100644 similarity index 100% rename from truetool.sh rename to truetool/truetool.sh