Skip to content

Commit d1252e2

Browse files
committed
fmt
Signed-off-by: Prabhu Subramanian <[email protected]>
1 parent c7e712d commit d1252e2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/npm-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
sudo apt update -y
4040
sudo apt install -y zlib1g php-zip tree
41-
sbt scalafmtCheck stage createDistribution
41+
sbt stage createDistribution
4242
sha512sum target/atom.zip > target/atom.zip.sha512
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
with:
6666
apps: scala3 scalac
6767
- run: |
68-
sbt stage createDistribution
68+
sbt scalafmtCheck stage createDistribution
6969
cd wrapper/nodejs
7070
bash build.sh
7171
npm install -g .

src/main/scala/io/appthreat/atom/Atom.scala

+1-2
Original file line numberDiff line numberDiff line change
@@ -544,12 +544,11 @@ object Atom:
544544
println(
545545
s"Semantic slices file '${semanticSlicesFile}' created successfully."
546546
)
547-
else{
547+
else
548548
println(s"scalasem ${workDir} ${semanticSlicesFile}")
549549
println(
550550
s"scalasem command did not produce the semantic slices file."
551551
)
552-
}
553552
case Failure(exception) =>
554553
println(
555554
s"Failed to run scalasem. Use the atom container image and re-run this command. Exception: ${exception.getMessage}"

0 commit comments

Comments
 (0)