parcopy 0.1.0

Parallel, atomic, and safe file/directory copying for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
# Use PowerShell on Windows
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]

[unix]
pre-commit:
    @if command -v prek > /dev/null 2>&1; then prek run --all-files; else pre-commit run --all-files; fi

[windows]
pre-commit:
    if (Get-Command prek -ErrorAction SilentlyContinue) { prek run --all-files } else { pre-commit run --all-files }