mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-09 18:43:34 -05:00
9 lines
121 B
Bash
9 lines
121 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
if ! [[ -x "$1" ]]; then
|
||
|
echo "Error: File:[$1] is not executable"
|
||
|
exit 1
|
||
|
fi
|