Update gitignore

This commit is contained in:
Waqar Ahmed
2021-04-13 15:28:15 +05:00
committed by Waqar Ahmed
parent 193cf49189
commit f0ce9e8859
2 changed files with 5 additions and 1 deletions

4
.gitignore vendored
View File

@@ -3,3 +3,7 @@
/sources/
/tmp/
/.buildEpoch
build/
dist/
scale_build.egg-info/
scale_build/__pycache__/

View File

@@ -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: