We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ecc51d commit 83aad68Copy full SHA for 83aad68
1 file changed
build/scripts/lib.sh
@@ -33,13 +33,9 @@ function get_output_dir()
33
fi
34
35
if [[ -n "$CI_OUTPUT" ]]; then
36
- d="$CI_OUTPUT/$subarch@$distro"
+ d="$CI_OUTPUT"
37
else
38
- d="$script_base/../output/$subarch@$distro"
39
- fi
40
-
41
- if [[ -n "$version" ]]; then
42
- d="$d@$version"
+ d="$script_base/../output"
43
44
45
case "$task" in
@@ -74,6 +70,12 @@ function get_output_dir()
74
70
75
71
76
72
73
+ d="$d@$subarch@$distro"
+
+ if [[ -n "$version" ]]; then
+ d="$d@$version"
77
+ fi
78
79
echo "$d"
80
81
return 0
0 commit comments