mirror of
https://github.com/truenas/scale-build.git
synced 2026-02-15 07:29:12 +00:00
Update gitignore
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -3,3 +3,7 @@
|
||||
/sources/
|
||||
/tmp/
|
||||
/.buildEpoch
|
||||
build/
|
||||
dist/
|
||||
scale_build.egg-info/
|
||||
scale_build/__pycache__/
|
||||
|
||||
@@ -7,7 +7,7 @@ from scale_build.utils.variables import MANIFEST
|
||||
def get_manifest():
|
||||
try:
|
||||
with open(MANIFEST, 'r') as f:
|
||||
return yaml.load(f.read())
|
||||
return yaml.safe_load(f.read())
|
||||
except FileNotFoundError:
|
||||
raise MissingManifest()
|
||||
except yaml.YAMLError:
|
||||
|
||||
Reference in New Issue
Block a user