mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
Fix CircleCI's working directory in install-for-ci
Currently on CircleCI, `$CIRCLE_WORKING_DIRECTORY` (defaulting to `~/project`) is where the repository is cloned instead of `$HOME/$CIRCLE_PROJECT_REPONAME/`.
This commit is contained in:
parent
eb592d05b8
commit
9b46fcab72
|
|
@ -236,6 +236,6 @@ mkdir -p "$LOCAL_LISP_TREE"
|
|||
if [ "$TRAVIS" ]; then
|
||||
echo "(:tree \"$TRAVIS_BUILD_DIR/\")" > "$ASDF_SR_CONF_FILE"
|
||||
elif [ "$CIRCLECI" ]; then
|
||||
echo "(:tree \"$HOME/$CIRCLE_PROJECT_REPONAME/\")" > "$ASDF_SR_CONF_FILE"
|
||||
echo "(:tree \"$CIRCLE_WORKING_DIRECTORY/\")" > "$ASDF_SR_CONF_FILE"
|
||||
fi
|
||||
echo "(:tree \"$LOCAL_LISP_TREE/\")" >> "$ASDF_SR_CONF_FILE"
|
||||
|
|
|
|||
Loading…
Reference in a new issue