this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add clean on new build of executeable

+5 -1
+5 -1
scripts/build.sh
··· 316 316 print_subsection "⚡" "Building AXe executable" 317 317 print_info "Using Swift Package Manager to build AXe..." 318 318 319 - # Build using Swift Package Manager 319 + # Clean any existing build products to ensure fresh build 320 + print_info "Cleaning previous build products..." 321 + swift package clean 322 + 323 + # Build using Swift Package Manager (rely on environment variables for cache control) 320 324 swift build --configuration ${build_config} 321 325 local build_exit_code=$? 322 326