2025-10-30 22:45:50 +03:00

15 lines
196 B
Bash
Executable File

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