1
0

Build: Set a fixed umask before starting Docker

Umask seems to leak into Docker containers and causes the build to
not be reproducible accross different umasks.

-----

taken from Electron-Cash/Electron-Cash@984967b408
This commit is contained in:
Axel Gembe
2019-07-23 21:24:32 +02:00
committed by SomberNight
parent 2a80f6a3ad
commit 84ca7ef306

View File

@@ -1,5 +1,8 @@
#!/usr/bin/env bash
# Set a fixed umask as this leaks into docker containers
umask 0022
RED='\033[0;31m'
BLUE='\033[0;34m'
YELLOW='\033[0;33m'