qiaojunfeng commited on
Commit
9c25305
·
1 Parent(s): d00f81a

Print folders in dryrun

Browse files
Files changed (1) hide show
  1. make_artifacts.jl +6 -1
make_artifacts.jl CHANGED
@@ -188,7 +188,12 @@ function (@main)(args)
188
  return
189
  end
190
 
191
- if !("dryrun" in args)
 
 
 
 
 
192
  clean_artifacts_dir() || return
193
 
194
  for folder in new_folders
 
188
  return
189
  end
190
 
191
+ if "dryrun" in args
192
+ println("New folders to process:")
193
+ for folder in new_folders
194
+ println("- $folder")
195
+ end
196
+ else
197
  clean_artifacts_dir() || return
198
 
199
  for folder in new_folders