Skip to content

Commit ec5f90f

Browse files
authored
Merge pull request #9 from cgay/dev
Install OD outside the main workspace directory
2 parents d3cb765 + 4c62e69 commit ec5f90f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

action.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ runs:
2020
env | sort # debug
2121
url="https://github.com/dylan-lang/opendylan/releases/download/${OD_TAG}/opendylan-${od_version}-x86_64-${opsys}.tar.bz2"
2222
echo "Downloading from ${url}"
23-
mkdir _od
24-
cd _od
23+
# Install outside the workspace directory so Deft doesn't find the Open Dylan LID files.
24+
mkdir ../_od
25+
cd ../_od
2526
curl -L -o opendylan.tar.bz2 ${url}
2627
tar xfj opendylan.tar.bz2
2728
ln -s opendylan-${od_version} opendylan
2829
ln -s opendylan-${od_version}/bin/dylan-compiler
2930
ln -s opendylan-${od_version}/bin/dylan
3031
echo "Compiler: ${PWD}/dylan-compiler"
31-
echo "dylan-tool: ${PWD}/dylan"
32+
echo "deft: ${PWD}/dylan"
3233
echo -n "Open Dylan "
3334
./dylan-compiler -version
3435
echo -n "dylan version: "

0 commit comments

Comments
 (0)