Skip to content

Commit 056dc62

Browse files
checking for nothing in deploy (#873)
* checking for nothing in deploy * triple nothing check * Update src/wizard/deploy.jl Co-authored-by: Mosè Giordano <[email protected]> Co-authored-by: Mosè Giordano <[email protected]>
1 parent 7d4bdce commit 056dc62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wizard/deploy.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function print_build_tarballs(io::IO, state::WizardState)
2525
"""
2626
end
2727

28-
if state.files === nothing
28+
if any(isnothing, (state.files, state.file_kinds, state.file_varnames))
2929
products_string = "Product[\n]"
3030
else
3131
stuff = collect(zip(state.files, state.file_kinds, state.file_varnames))

0 commit comments

Comments
 (0)