mirror of
https://github.com/HowardHinnant/date.git
synced 2024-12-26 16:01:04 +08:00
748a1fd5a9
but will return 1 in testing if they actually built
11 lines
73 B
Bash
Executable File
11 lines
73 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo $1
|
|
eval $1
|
|
|
|
if [ $? -eq 0 ]; then
|
|
exit 0;
|
|
fi
|
|
exit 1;
|
|
|