mirror of
https://github.com/danbulant/nushell
synced 2026-05-19 20:38:40 +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
|