mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-10-29 17:32:23 +00:00
15 lines
390 B
Bash
Executable File
15 lines
390 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
UMASK=$(umask)
|
|
|
|
if [ "${UMASK}" != "0002" -a "${UMASK}" != "0022" ]; then
|
|
cat <<EOF
|
|
********************************************
|
|
* WARNING: 'cpack -G DEB' / 'cpack -G RPM' *
|
|
* might not work correctly due to umask, *
|
|
* which is set to ${UMASK} *
|
|
* but expected is either 0002 or 0022 *
|
|
********************************************
|
|
EOF
|
|
fi
|