mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-10 10:55:46 +00:00
Merge pull request #4365 from cevich/safe_load
Cirrus: Fix minor python deprecation warning
This commit is contained in:
commit
9ba8dae0bf
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ guard-%:
|
|||
fi;
|
||||
|
||||
%.json: %.yml
|
||||
@python3 -c 'import json,yaml; json.dump( yaml.load(open("$<").read()), open("$@","w"), indent=2);'
|
||||
@python3 -c 'import json,yaml; json.dump( yaml.safe_load(open("$<").read()), open("$@","w"), indent=2);'
|
||||
|
||||
${PACKER_DIST_FILENAME}:
|
||||
@curl -L --silent --show-error \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue