7 lines
104 B
Bash
Executable File
7 lines
104 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
|
|
if [[ ! -z "${CI}"} ]]; then
|
|
ggshield secret scan pre-commit
|
|
fi
|