mirror of
https://github.com/edv-pi/pbs-client-docker.git
synced 2025-04-20 11:22:55 +02:00
7 lines
276 B
Bash
Executable File
7 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck shell=bash
|
|
find . -type f \( -name "*.sh" -o -name "up" -o -name "run*" \) -exec dos2unix {} \;
|
|
find ./src/helper_scripts -type f -exec dos2unix {} \;
|
|
find ./src/tests -type f -exec dos2unix {} \;
|
|
find . -type f | xargs git update-index --chmod=+x
|