mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
153 B
Bash
Executable file
8 lines
153 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# dmd -lib should fail without input sources/object files
|
|
if $DMD -m${MODEL} -lib 18902.a; then
|
|
exit 1
|
|
else
|
|
[ $? -eq 1 ]
|
|
fi
|