Sha256: b59e213b052893b9dd69d8aa6e4f2fa725545ea2171730cecbf9c96896c0c008
Contents?: true
Size: 669 Bytes
Versions: 3
Compression:
Stored size: 669 Bytes
Contents
#!/bin/bash _fastlane_complete() { COMPREPLY=() local word="${COMP_WORDS[COMP_CWORD]}" local completions="" # look for Fastfile either in this directory or fastlane/ then grab the lane names if [[ -e "Fastfile" ]]; then file="Fastfile" elif [[ -e "fastlane/Fastfile" ]]; then file="fastlane/Fastfile" elif [[ -e ".fastlane/Fastfile" ]]; then file=".fastlane/Fastfile" fi # parse 'beta' out of 'lane :beta do', etc completions=$(grep "^\s*lane \:" $file | awk -F ':' '{print $2}' | awk -F ' ' '{print $1}') completions="$completions update_fastlane" COMPREPLY=( $(compgen -W "$completions" -- "$word") ) }
Version data entries
3 entries across 3 versions & 1 rubygems