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:
@@ -1,5 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Set a fixed umask as this leaks into docker containers
|
||||||
|
umask 0022
|
||||||
|
|
||||||
RED='\033[0;31m'
|
RED='\033[0;31m'
|
||||||
BLUE='\033[0;34m'
|
BLUE='\033[0;34m'
|
||||||
YELLOW='\033[0;33m'
|
YELLOW='\033[0;33m'
|
||||||
|
|||||||
Reference in New Issue
Block a user