diff options
author | 2017-06-02 15:56:07 -0300 | |
---|---|---|
committer | 2017-06-21 15:01:48 +0100 | |
commit | 2499ee9fada75a9581b0bbe8ffc7637c7db2f306 (patch) | |
tree | c1d1deac1add00383ab4f0d23056c996b5ea5593 | |
parent | docker: update qemu:debian base following stretch release (diff) | |
download | qemu-2499ee9fada75a9581b0bbe8ffc7637c7db2f306.tar.xz qemu-2499ee9fada75a9581b0bbe8ffc7637c7db2f306.zip |
docker: let _copy_with_mkdir() sub_path argument be optional
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
-rwxr-xr-x | tests/docker/docker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/docker.py b/tests/docker/docker.py index 8747f6a440..6ddc6e4c2a 100755 --- a/tests/docker/docker.py +++ b/tests/docker/docker.py @@ -52,7 +52,7 @@ def _guess_docker_command(): raise Exception("Cannot find working docker command. Tried:\n%s" % \ commands_txt) -def _copy_with_mkdir(src, root_dir, sub_path): +def _copy_with_mkdir(src, root_dir, sub_path='.'): """Copy src into root_dir, creating sub_path as needed.""" dest_dir = os.path.normpath("%s/%s" % (root_dir, sub_path)) try: |