Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Nov 7, 2024
1 parent 4df941f commit d1d5c22
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
baseVersion="$(sbt 'eval Build.baseVersion' | grep 'ans: String =' | xargs | awk '{ print $5 }')"
buildMavenRepo="${baseMavenRepo}/${baseVersion}-${commitDate}-${commitHash}"
scalaVersion="$(sbt --error 'print scala3-compiler-bootstrapped/version' | head -n 1 | xargs)"
scalaVersion="$(sbt --error 'print scala3-compiler-bootstrapped/version' | grep "3." | tail -n 1 | xargs)"
fi
Expand Down
2 changes: 1 addition & 1 deletion compiler-builder/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ echo '##################################'

cd "$repoDir"

compilerVersion="$(sbt --error 'print scala3-compiler-bootstrapped/version' | head -n 1 | xargs)"
compilerVersion="$(sbt --error 'print scala3-compiler-bootstrapped/version' | grep "3." | tail -n 1 | xargs)"
if [[ "$scalaVersion" != "$compilerVersion" ]]; then
echo "Configured version $scalaVersion does not match compiler version $compilerVersion"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -ne 1 ]; then
fi

VERSION="$1"
export PREV_CB_VERSION="0.3.18"
export PREV_CB_VERSION="0.3.19"

javaDefault=11
javaAccessoryVersions=(8 17 21)
Expand Down

0 comments on commit d1d5c22

Please sign in to comment.