13 lines
185 B
Bash
Executable file
13 lines
185 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
yay --noconfirm -Syu \
|
|
openssh \
|
|
libfido2 \
|
|
;
|
|
|
|
# Git Config
|
|
source "../../Config/openssh/install.sh";
|
|
|
|
popd > /dev/null;
|