Skip to content

Commit

Permalink
simplify the other CI check as well
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Dec 2, 2023
1 parent 1b8052d commit f5f9a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verify.v
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ fn main() {
}
exit(1)
}
if new_files.len > 0 && os.getenv('CI') == 'true' {
if new_files.len > 0 && os.getenv('CI') != '' {
eprintln('Detected ${new_files.len} missing output files, you should run "v run verify.v" to generate output files')
for n in new_files {
eprintln(' v run verify.v ${n}')
Expand Down

0 comments on commit f5f9a0d

Please sign in to comment.