7 lines
95 B
Bash
7 lines
95 B
Bash
#!/bin/bash
|
|
|
|
if ( command -v poetry &> /dev/null )
|
|
then
|
|
source <(poetry completions bash)
|
|
fi
|