Skip to content

Commit

Permalink
#1 opt removed
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed May 19, 2024
1 parent 2b461ec commit 2a77f8e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/make.yaml → .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: sudo wget --no-verbose -O /usr/local/opt/Saxon.jar https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/9.8.0-5/Saxon-HE-9.8.0-5.jar
- run: sudo wget --no-verbose -O /usr/local/Saxon.jar https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/9.8.0-5/Saxon-HE-9.8.0-5.jar
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ LABEL "maintainer"="Yegor Bugayenko"

RUN gem install judges

RUN wget --no-verbose -O /usr/local/opt/Saxon.jar \
RUN wget --no-verbose -O /usr/local/Saxon.jar \
https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/9.8.0-5/Saxon-HE-9.8.0-5.jar

WORKDIR /home
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
.SHELLFLAGS: -c
.ONESHELL:
.PHONY: clean entry test
SAXON=/usr/local/opt/Saxon.jar
SAXON=/usr/local/Saxon.jar

entry: target/foo.fb test
export GITHUB_WORKSPACE=.
Expand Down
2 changes: 1 addition & 1 deletion entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set -e
set -x
set -o pipefail

SAXON=/usr/local/opt/Saxon.jar
SAXON=/usr/local/Saxon.jar

export GLI_DEBUG=true

Expand Down

0 comments on commit 2a77f8e

Please sign in to comment.