2025-10-12 02:10:06 +03:00

15 lines
191 B
Bash
Executable File

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