mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2026-01-27 23:23:15 +03:00
8 lines
113 B
Bash
Executable File
8 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
|
|
error() { echo -e "\\e[31m✗ $*\\e[0m"; }
|
|
|
|
if [ -f $1 ]; then
|
|
error "File '$1' found"
|
|
exit 1
|
|
fi |