-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchmod-win.bat
More file actions
33 lines (25 loc) · 999 Bytes
/
chmod-win.bat
File metadata and controls
33 lines (25 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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