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