1
0
mirror of https://github.com/nushell/nushell.git synced 2025-03-22 11:37:10 +01:00
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