Alex Auvolat
20f8f75823
Some checks failed
ci/woodpecker/pr/debug Pipeline was successful
ci/woodpecker/push/debug Pipeline was successful
ci/woodpecker/deployment/debug Pipeline was successful
ci/woodpecker/deployment/release/2 Pipeline was successful
ci/woodpecker/deployment/release/3 Pipeline was successful
ci/woodpecker/deployment/release/1 Pipeline was successful
ci/woodpecker/deployment/release/4 Pipeline was successful
ci/woodpecker/deployment/publish Pipeline failed
19 lines
327 B
Bash
Executable file
19 lines
327 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "[fail] usage: $0 binary"
|
|
exit 2
|
|
fi
|
|
|
|
if [ ! -x "$1" ]; then
|
|
echo "[fail] $1 does not exist or is not an executable"
|
|
exit 1
|
|
fi
|
|
|
|
if file "$1" | grep 'dynamically linked' 2>&1; then
|
|
echo "[fail] $1 is dynamic"
|
|
exit 1
|
|
fi
|
|
echo "[ok] $1 is probably static"
|