google / google-authenticator-libpam

Apache License 2.0
1.76k stars 281 forks source link

build-rpm.sh exits code 1 even when the build succeeds. #183

Closed helzerr closed 3 years ago

helzerr commented 3 years ago

Here's a diff with my proposed fix:

34c34
< ) || echo "Something went wrong" && exit 1
---
> ) || (echo "Something went wrong" ; exit 1)
ThomasHabets commented 3 years ago

Well spotted. Fix applied. Thank you.