dotfiles/install-hooks/psw/pre-install
2025-10-30 22:45:50 +03:00

15 lines
195 B
Bash
Executable File

#!/bin/sh
set -eu
tempdir="$(mktemp -d)"
readonly tempdir
(
cd "${tempdir}"
git clone https://gitea.thek4n.ru/thek4n/psw.git .
sudo PREFIX=/usr make install
)
rm -rf "${tempdir}"