mirror of
https://gitlab.com/fedora/bootc/base-images.git
synced 2026-08-30 21:10:44 +00:00
4 lines
127 B
Text
4 lines
127 B
Text
|
|
#!/bin/bash
|
||
|
|
set -xeuo pipefail
|
||
|
|
# Verify we didn't lose the executable bit for others on /
|
||
|
|
test $(($(stat -c '0%a' .) % 2)) = 1
|