Revision 000ed1c69509efb9f0ed72f5edfe8b8404262dde authored by Denis Yuen on 02 April 2019, 14:44:09 UTC, committed by Denis Yuen on 02 April 2019, 14:44:09 UTC
1 parent eb8de1d
Raw File
expand_confidential_bundle.sh
#!/usr/bin/env bash
# this takes a confidential data bundle in zip format (generated by Google Drive when downloading the folder) and puts 
# content in the appropriate places in our build directories
# warning: do not commit this data accidentally!
set -o errexit
set -o pipefail
set -o nounset
set -o xtrace

# bash expand_confidential_bundle.sh /path/to/zip/archive folder_name
# ex. bash expand_confidential_bundle.sh /home/aduncan/Downloads/add_curator.zip add_curator

zipArchive=$1
zipFolder=$2

unzip -p $zipArchive $zipFolder/config_file.txt >dockstore-integration-testing/src/test/resources/config_file.txt
unzip -p $zipArchive $zipFolder/config_file2.txt >dockstore-integration-testing/src/test/resources/config_file2.txt
unzip -p $zipArchive $zipFolder/migrations.test.confidential1.xml >dockstore-webservice/src/main/resources/migrations.test.confidential1.xml
unzip -p $zipArchive $zipFolder/migrations.test.confidential2.xml >dockstore-webservice/src/main/resources/migrations.test.confidential2.xml
unzip -p $zipArchive $zipFolder/migrations.test.confidential1_1.5.0.xml >dockstore-webservice/src/main/resources/migrations.test.confidential1_1.5.0.xml
unzip -p $zipArchive $zipFolder/migrations.test.confidential2_1.5.0.xml >dockstore-webservice/src/main/resources/migrations.test.confidential2_1.5.0.xml
unzip -p $zipArchive $zipFolder/dockstoreTest.yml >dockstore-integration-testing/src/test/resources/dockstoreTest.yml
back to top