2025-01-23 00:29:59 +03:00

15 lines
174 B
Bash
Executable File

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