9 lines
165 B
Bash
Executable file
9 lines
165 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
base_path="$HOME/.cache/remote-sources"
|
|
file_path="$base_path/$2"
|
|
|
|
autoinstall file "$1" "$file_path"
|
|
|
|
# shellcheck disable=SC1090
|
|
. "$file_path"
|