mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-16 22:46:51 +08:00
8 lines
120 B
Bash
Executable File
8 lines
120 B
Bash
Executable File
#! /bin/sh
|
|
LD_LIBRARY_PATH=. ./main
|
|
exitCode=$?
|
|
if test "$exitCode" != 46; then
|
|
echo "bad exit code!"
|
|
exit 1
|
|
fi
|