Skip to content

Commit

Permalink
Fix condition for showing classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
propensive committed Dec 27, 2023
1 parent 6db0c69 commit e43ed0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrath
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ identifier[main]=0
identifier[artifact]=0
identifier[counter]=0

if [ "$showClasspath" != "1" ] && [ -f .wrath/classpath.cache ]
if [ "$showClasspath" == "1" ] && [ -f .wrath/classpath.cache ]
then
cat .wrath/classpath.cache
exit 0
Expand Down

0 comments on commit e43ed0d

Please sign in to comment.