File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ platforms:
60
60
script_location : toolchain/ci
61
61
template_location : toolchain/cmake/Templates
62
62
version :
63
- hotfix : 26
63
+ hotfix : 27
64
64
major : 0
65
65
minor : 3
66
66
patch : 0
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ case $1 in
65
65
pwd
66
66
docker run --rm \
67
67
-v ${BASE_DIR} :/build/src \
68
- -v $( realpath . ) /build:/build/build \
69
- -v $( realpath . ) /install:/build/install \
68
+ -v $PWD /build:/build/build \
69
+ -v $PWD /install:/build/install \
70
70
-e BUILDVARIANT=${BUILDVARIANT} \
71
71
-e CONFIGURATION=${CONFIGURATION} \
72
72
-e GENERATE_PROGRAMS=${GENERATE_PROGRAMS} \
@@ -75,21 +75,21 @@ case $1 in
75
75
${CONTAINER} /build/src/cb ci-build ${@: 2}
76
76
;;
77
77
" compress-usr-dir" )
78
- INSTALL_DIR=$( realpath . ) /build/install
78
+ INSTALL_DIR=$PWD /build/install
79
79
80
80
if [ -f " ${BASE_DIR} /deploy-script.sh" ]; then
81
81
echo " -- Using customized deploy script"
82
82
source ${BASE_DIR} /deploy-script.sh
83
83
else
84
- OUTPUT=$( realpath . ) /${2} _${BUILDVARIANT} .tar.bz2
84
+ OUTPUT=$PWD /${2} _${BUILDVARIANT} .tar.bz2
85
85
echo " -- Creating $OUTPUT from $INSTALL_DIR "
86
86
87
87
echo " -- Current directory: $( pwd) "
88
88
89
89
echo " -- Source dir: ${BASE_DIR} "
90
90
ls ${BASE_DIR}
91
- echo " -- Build dir: $( realpath . ) /build"
92
- ls $( realpath . ) /build
91
+ echo " -- Build dir: $PWD /build"
92
+ ls $PWD /build
93
93
echo " -- Install dir: ${INSTALL_DIR} "
94
94
ls ${INSTALL_DIR}
95
95
You can’t perform that action at this time.
0 commit comments