12 lines
171 B
Bash
12 lines
171 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
_usage="
|
||
|
A wrapper script around \`npins\` for updating sources
|
||
|
|
||
|
Usage: $(basename "$0")
|
||
|
"
|
||
|
|
||
|
npins update \
|
||
|
--directory ./.sources
|