From dcdebe36c40576c3a79e0ee81a19e57cd2ef0094 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Fri, 3 Apr 2020 01:12:43 +0200 Subject: [PATCH] Fixed target path creation --- scripts/travis.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/travis.sh b/scripts/travis.sh index 644f57c0..5960447d 100644 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -173,6 +173,7 @@ function move_target_file() { handle_failure -1 "Failed to find target file" fi + mkdir -p packages || { echo "failed to create target path"; exit 1; } target_file="../packages/$file_name" if [[ -f "$target_file" ]]; then echo "Removing old packed file located at $target_file"