mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
19 lines
316 B
Bash
19 lines
316 B
Bash
|
set +u
|
||
|
source $TESTED/home-path/etc/profile.d/hm-session-vars.sh
|
||
|
set -u
|
||
|
|
||
|
check_arguments () {
|
||
|
if [ "$1" != "$2" ]; then
|
||
|
@coreutils@/bin/cat <<- EOF
|
||
|
Expected arguments:
|
||
|
$1
|
||
|
but got:
|
||
|
$2
|
||
|
EOF
|
||
|
exit 1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
check_arguments "--create-frame" "$($EDITOR)"
|
||
|
check_arguments "foo bar baz" "$($EDITOR foo bar baz)"
|