diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2017-11-08 13:53:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-08 13:53:51 +0100 |
commit | 6329b9c94c9f4fd2f57819ed98eaf9f1ee3cd525 (patch) | |
tree | ab06db7f413667d7e7b18745a73039aef46ca8da | |
parent | 514fbb9fe05e11d8fb8a61d969c6ede76c96538a (diff) | |
parent | 443e92c7416df8fd9e450b5711d120ed02137503 (diff) | |
download | meta-updater-6329b9c94c9f4fd2f57819ed98eaf9f1ee3cd525.tar.gz |
Merge pull request #167 from advancedtelematic/bugfix/qemuoverlay
Fix race condition in run-qemu-ota
-rwxr-xr-x | scripts/run-qemu-ota | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run-qemu-ota b/scripts/run-qemu-ota index 5334814..641296c 100755 --- a/scripts/run-qemu-ota +++ b/scripts/run-qemu-ota | |||
@@ -161,7 +161,7 @@ def main(): | |||
161 | if args.dry_run: | 161 | if args.dry_run: |
162 | print(" ".join(img_cmdline)) | 162 | print(" ".join(img_cmdline)) |
163 | else: | 163 | else: |
164 | Popen(img_cmdline) | 164 | Popen(img_cmdline).wait() |
165 | 165 | ||
166 | if args.dry_run: | 166 | if args.dry_run: |
167 | print(" ".join(cmdline)) | 167 | print(" ".join(cmdline)) |