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
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