Skip to content

Commit be0ae2f

Browse files
yamtxiaoxiang781216
authored andcommitted
cibuild.sh: Avoid .. in path
As zsh completion doesn't seem to be happy with them.
1 parent 30e6658 commit be0ae2f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

cibuild.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@
2626
set -e
2727

2828
WD=$(cd $(dirname $0) && pwd)
29-
nuttx=$WD/../nuttx
30-
apps=$WD/../apps
31-
tools=$WD/../tools
32-
prebuilt=$WD/../prebuilt
29+
WORKSPACE=$(cd $WD/.. && pwd -P)
30+
nuttx=$WORKSPACE/nuttx
31+
apps=$WORKSPACE/apps
32+
tools=$WORKSPACE/tools
33+
prebuilt=$WORKSPACE/prebuilt
3334
os=$(uname -s)
3435
EXTRA_PATH=
3536

0 commit comments

Comments
 (0)