This works around https://github.com/coreos/rpm-ostree/pull/5322 so we can ship the fix faster. Signed-off-by: Colin Walters <walters@verbum.org>
4 lines
127 B
Bash
Executable file
4 lines
127 B
Bash
Executable file
#!/bin/bash
|
|
set -xeuo pipefail
|
|
# Verify we didn't lose the executable bit for others on /
|
|
test $(($(stat -c '0%a' .) % 2)) = 1
|