mirror of
https://github.com/nushell/nushell
synced 2024-11-15 09:27:08 +00:00
9 lines
110 B
Text
9 lines
110 B
Text
|
#! /bin/bash
|
||
|
|
||
|
if [ "$1" = configure ] && which add-shell >/dev/null
|
||
|
then
|
||
|
add-shell /usr/bin/nu
|
||
|
fi
|
||
|
|
||
|
exit 0
|