2
0
Fork 0
mirror of https://github.com/nushell/nushell synced 2025-02-01 06:43:53 +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