Skip to content

Commit 48fab85

Browse files
committed
fix(os): use a canonical build umask
1 parent 5993d46 commit 48fab85

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

os/mkosi/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
# SPDX-License-Identifier: Apache-2.0
33
set -euo pipefail
4+
umask 0022
45
SELF=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
56
ROOT=$(cd "$SELF/../.." && pwd)
67
# shellcheck source=/dev/null

os/mkosi/scripts/make-release-artifacts.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
# SPDX-License-Identifier: Apache-2.0
33
set -euo pipefail
4+
umask 0022
45
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/../../.." && pwd)
56
SELF="$ROOT/os/mkosi"
67
# shellcheck source=/dev/null

0 commit comments

Comments
 (0)