trash-cli-core 0.1.0

Shared Rust foundation for trash-cli command migration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -euo pipefail

SCRIPT_DIR="$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

COMMAND="$1"

test -x "$VIRTUAL_ENV/bin/$COMMAND" || {
    >&2 echo "$COMMAND not installed
Please run:

    pip install -r requirements.txt -r requirements-dev.txt
"
}