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