This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git

commit be0ae2f1890b7669f2af43fc6aaf97acea9b017f
Author: YAMAMOTO Takashi <[email protected]>
AuthorDate: Mon May 4 21:53:01 2020 +0900

    cibuild.sh: Avoid .. in path
    
    As zsh completion doesn't seem to be happy with them.
---
 cibuild.sh | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/cibuild.sh b/cibuild.sh
index d766780..86fb1b0 100755
--- a/cibuild.sh
+++ b/cibuild.sh
@@ -26,10 +26,11 @@
 set -e
 
 WD=$(cd $(dirname $0) && pwd)
-nuttx=$WD/../nuttx
-apps=$WD/../apps
-tools=$WD/../tools
-prebuilt=$WD/../prebuilt
+WORKSPACE=$(cd $WD/.. && pwd -P)
+nuttx=$WORKSPACE/nuttx
+apps=$WORKSPACE/apps
+tools=$WORKSPACE/tools
+prebuilt=$WORKSPACE/prebuilt
 os=$(uname -s)
 EXTRA_PATH=
 

Reply via email to