nushell/debian/postinst

9 lines
110 B
Plaintext
Raw Normal View History

2019-09-10 18:40:14 +02:00
#! /bin/bash
if [ "$1" = configure ] && which add-shell >/dev/null
then
add-shell /usr/bin/nu
fi
exit 0