mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 22:22:40 +00:00
13 lines
168 B
Bash
Executable File
13 lines
168 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Uses the `zet` command setting the directory to the
|
|
# Housh As A System zet repository.
|
|
|
|
main() {
|
|
(ZETDIR="$HAASZET" eval zet "$@")
|
|
}
|
|
|
|
main "$@"
|