mirror of
https://github.com/nushell/nushell.git
synced 2024-11-07 17:14:23 +01:00
9 lines
110 B
Bash
9 lines
110 B
Bash
#! /bin/bash
|
|
|
|
if [ "$1" = configure ] && which add-shell >/dev/null
|
|
then
|
|
add-shell /usr/bin/nu
|
|
fi
|
|
|
|
exit 0
|