-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bf2fbc
commit 091e00a
Showing
3 changed files
with
18 additions
and
43 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Helper to source global definition files. | ||
|
||
# Source a system file. If no filename is given, list the available names. | ||
s() { | ||
local sourcedir="$SYSTEM_DIR/source" | ||
if [ $# -eq 0 ]; then | ||
ls -1 "$sourcedir" | ||
return | ||
fi | ||
|
||
local file | ||
for file in "$@"; do | ||
# shellcheck disable=SC1090 | ||
. "$sourcedir/$file" | ||
done | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters