๐Ÿ“ฆโž”๐Ÿฆ‹ Store and retrieve files on the Atmosphere
35
fork

Configure Feed

Select the types of activity you want to include in your feed.

devel: add check for git

Ducky 40806409 55175dad

+4
+4
atfile.sh
··· 61 61 ATFILE_DEVEL_DIR="$(dirname "$(realpath "$0")")" 62 62 ATFILE_DEVEL_ENTRY="$(realpath "$0")" 63 63 64 + if [ ! -x "$(command -v git)" ]; then 65 + atfile.devel.die "'git' not installed (download: https://git-scm.com/downloads/linux)" 66 + fi 67 + 64 68 git describe --exact-match --tags > /dev/null 2>&1 65 69 [[ $? != 0 ]] && version+="+git.$(git rev-parse --short HEAD)" 66 70