-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchmod.sh
More file actions
executable file
·29 lines (22 loc) · 883 Bytes
/
chmod.sh
File metadata and controls
executable file
·29 lines (22 loc) · 883 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
#!/bin/bash
git update-index --chmod=+x ./.husky/pre-commit
git add --chmod=+x ./.husky/pre-commit
chmod +x ./.husky/pre-commit
git update-index --chmod=+x ./kubernetes/install.sh
git add --chmod=+x ./kubernetes/install.sh
chmod +x ./kubernetes/install.sh
git update-index --chmod=+x ./prepare.sh
git add --chmod=+x ./prepare.sh
chmod +x ./prepare.sh
git update-index --chmod=+x ./kubernetes/deinstall.sh
git add --chmod=+x ./kubernetes/deinstall.sh
chmod +x ./kubernetes/deinstall.sh
git update-index --chmod=+x ./scripts/shell/publish-npm.sh
git add --chmod=+x ./scripts/shell/publish-npm.sh
chmod +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
chmod +x ./scripts/shell/publish-nuget.sh
git update-index --chmod=+x ./chmod.sh
git add --chmod=+x ./chmod.sh
chmod +x chmod.sh