2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-01-29 21:33:31 +00:00
nushell/debian/postinst
2019-09-12 19:59:40 +02:00

8 lines
110 B
Bash

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