mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-04-19 14:29:05 +00:00
11 lines
344 B
Bash
Executable File
11 lines
344 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright © Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
for file in $(git diff --cached --name-only --diff-filter=ACM | grep -E '\.(cpp|hpp|txt|inc)$'); do
|
|
if [ -x "$file" ]; then
|
|
chmod -x "$file"
|
|
echo "[remove-exec-bit] Removed executable bit from $file" >&2
|
|
fi
|
|
done
|