6 lines
93 B
Bash
6 lines
93 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -Eeuo pipefail
|
||
|
|
||
|
find . -name "*.sh" -exec git update-index --chmod=+x {} \;
|