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