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