Skip to content
Snippets Groups Projects
prepareRelease.sh 685 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    
    VERSION=$1
    COMPOSER_VERSION=$(echo "$VERSION" | perl -pe 's/(?<=[alpha|beta])\.//g')
    
    # replace composer.json version using jq
    echo "$( jq '.version = "'$COMPOSER_VERSION'"' composer.json )" > composer.json
    
    # download GeoLite2-City archive and extract it to writable/uploads
    wget -c "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=v3PguJMcmZMb9Ld0&suffix=tar.gz" -O - | tar -xz -C ./writable/uploads/
    
    # rename extracted archives' folders
    mv ./writable/uploads/GeoLite2-City* ./writable/uploads/GeoLite2-City
    
    # create bundle folder: uses .rsync-filter (-F) file to copy only needed files
    rsync -avF --progress . ./castopod-$VERSION