File tree Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Expand file tree Collapse file tree 4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ export DOCKER_BUILDKIT=1
Original file line number Diff line number Diff line change 1+ _artisan ()
2+ {
3+ COMP_WORDBREAKS=${COMP_WORDBREAKS//: }
4+ COMMANDS=` php artisan --raw --no-ansi list | sed " s/[[:space:]].*//g" `
5+ COMPREPLY=(` compgen -W " $COMMANDS " -- " ${COMP_WORDS[COMP_CWORD]} " ` )
6+ return 0
7+ }
8+ complete -F _artisan art
9+ complete -F _artisan artisan
Original file line number Diff line number Diff line change 1+ if [ ! -e $HOME /.nvm/versions/node/v18.14.1/bin/trello ]; then
2+ echo Trello not installed
3+ echo npm install -g trello-cli
4+ else
5+ if [ ! -f .trello ]; then
6+ echo " No .trello file in current directory. Can't continue"
7+ else
8+ # trello show-cards -b "$(cat .trello)"
9+ fi
10+ fi
Original file line number Diff line number Diff line change 1+ export NCVO_HOME=$HOME /usr/ncvo
2+ export PATH=$PATH :$NCVO_HOME /back-controller/bin
3+ source $NCVO_HOME /back-controller/bin/bash_completion.bash
You can’t perform that action at this time.
0 commit comments