File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Following instructions from: https://github.com/delph-in/docs/wiki/AceInstall
4
+ # Choose ready-to-run ACE binary download from https://sweaglesw.org/linguistics/ace/
5
+ TAR_URL=" https://sweaglesw.org/linguistics/ace/download/ace-0.9.34-x86-64.tar.gz"
6
+ sudo apt install curl
7
+ curl -L $TAR_URL -o /tmp/file.tar.gz
8
+ mkdir -p /tmp/extracted
9
+ tar -xzvf /tmp/file.tar.gz -C /tmp/extracted
10
+ chmod +x /tmp/extracted/ace-0.9.34/ace
11
+ # destination path depends on where your bin is
12
+ sudo mv /tmp/extracted/ace-0.9.34/ace /usr/local/bin/ace
13
+
14
+ exit_status=$?
15
+
16
+ if [ $exit_status -ne 0 ]; then
17
+ echo " Error occurred: Command failed with exit status $exit_status "
18
+ exit 1
19
+ else
20
+ echo " Successfully installed ace"
21
+ fi
Original file line number Diff line number Diff line change 1
1
pydelphin == 1.4.0
2
+
3
+ # Run ./install_ace.sh
Original file line number Diff line number Diff line change @@ -1384,7 +1384,7 @@ Radio comp-neg-head-infl-comp-neg "neg selected by" "Is neg selected by" "<br />
1384
1384
. aux "aux" "" "a (sub-)class of aux-verbs" "neg_comp()"
1385
1385
. v "v" "" "any (finite) verb" "neg_comp()"
1386
1386
1387
- Radio comp-neg-order-infl-head "neg ordered" "How is neg ordered with resepct
1387
+ Radio comp-neg-order-infl-head "neg ordered" "How is neg ordered with respect
1388
1388
to other COMPS?" "<br />(NB: After other complements order is only available
1389
1389
for non-argument composing auxiliaries.)<br />"
1390
1390
. before "before" "" "before "
You can’t perform that action at this time.
0 commit comments