├── Dockerfile ├── README.md ├── assets ├── check ├── common.sh ├── in └── out ├── pipeline.yml ├── test ├── common.bats ├── data │ ├── pivotal-1.0.0-rc1.tar.gz │ ├── pivotal-1.0.0-rc2.tar.gz │ ├── pivotal-1.0.1-rc1.tar.gz │ ├── pivotal-1.0.1.tar.gz │ ├── sample_folder_contents01.txt │ ├── sample_folder_contents01_allversions_output.txt │ ├── sample_folder_contents01_files_output.txt │ ├── sample_folder_contents01_v_version_output.txt │ └── sample_folder_contents01_version_output.txt ├── helpers.sh ├── itest-out.sh ├── test-check.sh ├── test-in.sh ├── test-out.sh └── test-regex.sh └── tools └── jq /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/README.md -------------------------------------------------------------------------------- /assets/check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/assets/check -------------------------------------------------------------------------------- /assets/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/assets/common.sh -------------------------------------------------------------------------------- /assets/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/assets/in -------------------------------------------------------------------------------- /assets/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/assets/out -------------------------------------------------------------------------------- /pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/pipeline.yml -------------------------------------------------------------------------------- /test/common.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/common.bats -------------------------------------------------------------------------------- /test/data/pivotal-1.0.0-rc1.tar.gz: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /test/data/pivotal-1.0.0-rc2.tar.gz: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /test/data/pivotal-1.0.1-rc1.tar.gz: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /test/data/pivotal-1.0.1.tar.gz: -------------------------------------------------------------------------------- 1 | testing 2 | -------------------------------------------------------------------------------- /test/data/sample_folder_contents01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/data/sample_folder_contents01.txt -------------------------------------------------------------------------------- /test/data/sample_folder_contents01_allversions_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/data/sample_folder_contents01_allversions_output.txt -------------------------------------------------------------------------------- /test/data/sample_folder_contents01_files_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/data/sample_folder_contents01_files_output.txt -------------------------------------------------------------------------------- /test/data/sample_folder_contents01_v_version_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/data/sample_folder_contents01_v_version_output.txt -------------------------------------------------------------------------------- /test/data/sample_folder_contents01_version_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/data/sample_folder_contents01_version_output.txt -------------------------------------------------------------------------------- /test/helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/helpers.sh -------------------------------------------------------------------------------- /test/itest-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/itest-out.sh -------------------------------------------------------------------------------- /test/test-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/test-check.sh -------------------------------------------------------------------------------- /test/test-in.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/test-in.sh -------------------------------------------------------------------------------- /test/test-out.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/test-out.sh -------------------------------------------------------------------------------- /test/test-regex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/test/test-regex.sh -------------------------------------------------------------------------------- /tools/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/artifactory-resource/HEAD/tools/jq --------------------------------------------------------------------------------