nushell/debian/postinst
2019-09-12 19:59:40 +02:00

9 lines
110 B
Bash

#! /bin/bash
if [ "$1" = configure ] && which add-shell >/dev/null
then
add-shell /usr/bin/nu
fi
exit 0