M .builds/archlinux.yml => .builds/archlinux.yml +1 -1
@@ 12,7 12,7 @@ tasks:
cd lambda-cpp
gpg --import .builds/signing-keys.asc
gpg --list-keys | grep '^ ' | sed 's/^ *//' | sed 's/$/:6:/' | gpg --import-ownertrust # Set trust of all keys to ultimate
- if test $(git rev-parse --symbolic --abbrev-ref HEAD) = master; then
+ if test $(git rev-parse HEAD) = $(git rev-parse master); then
git verify-commit HEAD
fi
- build-with-g-plus-plus: |
M .builds/freebsd.yml => .builds/freebsd.yml +1 -1
@@ 11,7 11,7 @@ tasks:
cd lambda-cpp
gpg --import .builds/signing-keys.asc
gpg --list-keys | grep '^ ' | sed 's/^ *//' | sed 's/$/:6:/' | gpg --import-ownertrust # Set trust of all keys to ultimate
- if test $(git rev-parse --symbolic --abbrev-ref HEAD) = master; then
+ if test $(git rev-parse master) = $(git rev-parse HEAD); then
git verify-commit HEAD
fi
- build-with-g-plus-plus: |