File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ The following programs are required to be installed on the machine running this
2020* [ kubectl] ( https://kubernetes.io/docs/tasks/tools/#kubectl )
2121
2222### Usage
23- To use the CRD Extractor, run the following script:
23+ To use the CRD Extractor:
24+ 1 . Download the [ latest release] ( https://github.com/datreeio/CRDs-catalog/releases/latest/download/crd-extractor.zip ) from this repository.
25+ 2 . Extract, and run the utility:
2426```
25- ./Utilities/ crd-extractor.sh
27+ ./crd-extractor.sh
2628```
Original file line number Diff line number Diff line change @@ -21,8 +21,9 @@ if ! pip3 show pyyaml &> /dev/null; then
2121 while true ; do
2222 read -p " Do you wish to install this program? (y/n) " yn
2323 case $yn in
24- [Yy]* ) pip3 install pyyaml; break ;;
25- [Nn]* ) echo " Exiting..." ; exit ;;
24+ [Yy] ) pip3 install pyyaml; break ;;
25+ " " ) pip3 install pyyaml; break ;;
26+ [Nn] ) echo " Exiting..." ; exit ;;
2627 * ) echo " Please answer 'y' (yes) or 'n' (no)." ;;
2728 esac
2829 done
You can’t perform that action at this time.
0 commit comments