14 lines
322 B
Fish
Executable file
14 lines
322 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
|
|
function getInstallerScript -V dir -S
|
|
echo "$dir/install.fish"
|
|
end
|
|
|
|
CONFIG_NAME="DerGeret" \
|
|
ARCH_HOSTNAME="der-geret" \
|
|
USER_DISPLAYNAME="Manuel Thalmann" \
|
|
source "$(status dirname)/../../../../../scripts/Arch/OS/setup.fish"
|
|
end
|