dela 0.0.6

A task runner that delegates the work to other tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Basic PowerShell profile for testing

# Set a basic prompt
function prompt {
    "$($PWD.Path)> "
}

# Set up basic path
$env:PATH = "/usr/local/bin:/usr/bin:/bin:$env:PATH"

# Basic command not found handler (will be replaced by dela)
trap [System.Management.Automation.CommandNotFoundException] {
    Write-Error "pwsh: command not found: $($_.CategoryInfo.TargetName)"
    continue
}