summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOYTIS <tossel@gmail.com>2017-11-08 14:24:23 +0100
committerGitHub <noreply@github.com>2017-11-08 14:24:23 +0100
commit8a47cb9cb7b28e8c532592baded6d56dcb3ed818 (patch)
tree16d6f0917ddcd32f0134efd4b3ae10a6a63aa1b7
parent30e4eadbab4cf9d4cfcc37e5e0142d9b32717939 (diff)
parentbc6b1323964a5bc1146d92aa9413d5c609696670 (diff)
downloadmeta-updater-8a47cb9cb7b28e8c532592baded6d56dcb3ed818.tar.gz
Merge pull request #168 from advancedtelematic/bugfix/qemuoverlay-morty
Fix race condition in run-qemu-ota
-rwxr-xr-xscripts/run-qemu-ota2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/run-qemu-ota b/scripts/run-qemu-ota
index 7f84d08..6a3586c 100755
--- a/scripts/run-qemu-ota
+++ b/scripts/run-qemu-ota
@@ -157,7 +157,7 @@ def main():
157 if args.dry_run: 157 if args.dry_run:
158 print(" ".join(img_cmdline)) 158 print(" ".join(img_cmdline))
159 else: 159 else:
160 Popen(img_cmdline) 160 Popen(img_cmdline).wait()
161 161
162 if args.dry_run: 162 if args.dry_run:
163 print(" ".join(cmdline)) 163 print(" ".join(cmdline))