diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index b227d4c..cdf8812 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -9,4 +9,4 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run shellcheck. - run: while read -r script; do shellcheck --exclude=SC1090,SC1091 $script; done < files + run: while read -r script; do shellcheck --exclude=SC1090,SC1091 $script; done < tests/files diff --git a/CONTRIBUTORS b/CONTRIBUTORS deleted file mode 100644 index 2c1bf6d..0000000 --- a/CONTRIBUTORS +++ /dev/null @@ -1,10 +0,0 @@ -List of contributors and maintainers -==================================== - -Maintainers List ----------------- - -Saalim Quadri - -Contributors List ------------------ diff --git a/Makefile b/Makefile index c149373..cacb386 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ check-scripts: - while read -r script; do shellcheck --exclude=SC1090,SC1091 $$script; done < files + while read -r script; do shellcheck --exclude=SC1090,SC1091 $$script; done < tests/files execute-shfmt: - while read -r script; do shfmt -ln=bash -fn -ci -sr -w $$script; done < files + while read -r script; do shfmt -ln=bash -fn -ci -sr -w $$script; done < tests/files .PHONY: check-scripts diff --git a/README.md b/README.md index a5224cb..317f22d 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,17 @@ and don't forget to read our # Contact The best way to connect or get help is by creating [issues](https://github.com/danascape/sworkflow/issues) or by making a [pull request](https://github.com/danascape/sworkflow/pulls). +## Contributors + + + + + + + + + + # License ```xml Copyright 2019 danascape (Saalim Quadri) diff --git a/assets/placeholder b/assets/placeholder deleted file mode 100644 index e69de29..0000000 diff --git a/files b/tests/files similarity index 100% rename from files rename to tests/files