SQSCANGHA-51 Make Scanner CLI binaries URL customizable

This commit is contained in:
Antonio Aversa 2024-11-28 08:06:29 +01:00 committed by GitHub
parent 6440c73982
commit 05ca09c2da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 63 additions and 2 deletions

8
test/assertFileDoesntExist Executable file
View file

@ -0,0 +1,8 @@
#!/bin/bash
error() { echo -e "\\e[31m✗ $*\\e[0m"; }
if [ -f $1 ]; then
error "File '$1' found"
exit 1
fi