Connect applications to schemes, filetypes, and more on macOS (more to come)
2
fork

Configure Feed

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

fixes to the build pipeline

+5 -5
+5 -5
justfile
··· 74 74 # Windows the only one that has an executable extension 75 75 let ext = if ($target | str contains 'windows-msvc') { '.exe' } else { '' } 76 76 77 - # Example: package-triplet 78 - let qualified_name = $"($prime)-($target)" 79 - 80 77 let bin_path = $'($artifact_dir)/($prime)($ext)' # Where rust puts the binary artifact 81 - let out_path = $'($out)/($qualified_name)($ext)' 78 + let out_path = $'($out)/($prime)($ext)' 82 79 83 80 # Create output directory structure 84 81 try { ··· 217 214 } 218 215 } 219 216 217 + let prime = '{{ main_package }}' 218 + let sys = '{{ system }}' 219 + 220 220 print "🗜️ Compressing release packages..." 221 221 222 222 let dir = '{{ directory }}' ··· 239 239 240 240 try { 241 241 let parent_dir = ($pkg_dir | path dirname) 242 - let archive_name = $'($pkg_dir).tar.gz' 242 + let archive_name = $'($prime)-($sys).tar.gz' 243 243 244 244 # Use tar command to create compressed archive 245 245 let result = (run-external 'tar' '-czf' $archive_name '-C' $parent_dir $pkg_name | complete)