mirror of
https://github.com/falcion/Whisperer.md.git
synced 2026-07-22 11:50:29 +00:00
33 lines
999 B
Batchfile
33 lines
999 B
Batchfile
git config core.fileMode true
|
|
|
|
git update-index --chmod=+x ./.husky/pre-commit
|
|
git add --chmod=+x ./.husky/pre-commit
|
|
attrib +x ./.husky/pre-commit
|
|
|
|
git update-index --chmod=+x ./kubernetes/install.sh
|
|
git add --chmod=+x ./kubernetes/install.sh
|
|
attrib +x ./kubernetes/install.sh
|
|
|
|
git update-index --chmod=+x ./prepare.sh
|
|
git add --chmod=+x ./prepare.sh
|
|
attrib +x ./prepare.sh
|
|
|
|
git update-index --chmod=+x ./kubernetes/deinstall.sh
|
|
git add --chmod=+x ./kubernetes/deinstall.sh
|
|
attrib +x ./kubernetes/deinstall.sh
|
|
|
|
git update-index --chmod=+x ./scripts/shell/publish-npm.sh
|
|
git add --chmod=+x ./scripts/shell/publish-npm.sh
|
|
attrib +x ./scripts/shell/publish-npm.sh
|
|
|
|
git update-index --chmod=+x ./scripts/shell/publish-nuget.sh
|
|
git add --chmod=+x ./scripts/shell/publish-nuget.sh
|
|
attrib +x ./scripts/shell/publish-nuget.sh
|
|
|
|
git update-index --chmod=+x ./chmod.sh
|
|
git add --chmod=+x ./chmod.sh
|
|
attrib +x chmod.sh
|
|
|
|
git add .
|
|
git commit -m "chore: auto-lint for bash script"
|
|
git config core.fileMode false
|