Skip to content

Instantly share code, notes, and snippets.

@ktomk
Forked from tkn98/download.sh
Last active November 4, 2015 22:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ktomk/7391a730ff55be79cdbc to your computer and use it in GitHub Desktop.
Save ktomk/7391a730ff55be79cdbc to your computer and use it in GitHub Desktop.
download job for not yet mirrored magento installs
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.9.1.1.zip
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.9.1.0.zip
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.9.0.1.zip
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.8.1.0.zip
wget -nc https://github.com/ktomk/magento-mirror/archive/1.8.0.0.zip
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.9.1.1.tar.gz
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.9.1.0.tar.gz
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.9.0.1.tar.gz
wget -nc https://github.com/OpenMage/magento-mirror/archive/1.8.1.0.tar.gz
wget -nc https://github.com/ktomk/magento-mirror/archive/1.8.0.0.tar.gz
# git tag 1.8.0.0 94e611e127d5c14008990b256ed06ded622dcee9
for f in *.{zip,gz}
do
shasum "${f}"
done
9b1dee54d0b047b66d7ad6b8ea1ff414b7773093 1.8.0.0.zip
3fbff399799177e8048cc4048f66213fedd132c1 1.8.1.0.zip
9c87abc997957ebbf646e1a4d87d3d09e4d773f5 1.9.0.1.zip
e3dcfea601ada21ce84ee4836d801dd2feeb08d1 1.9.1.0.zip
3aa497d245affb273cc55851163f5133cecef650 1.9.1.1.zip
b5653f120ebb585607463192449d4e8bb98ce998 1.8.0.0.tar.gz
d5f90ec133cd67f72339692c09b623857c80b3b3 1.8.1.0.tar.gz
bd15d5f08e8f9f46276eb961398e665d5446b4ee 1.9.0.1.tar.gz
c736ed638840e89572449f0142ab423da5e6ce9f 1.9.1.0.tar.gz
e87c96eebc0f4286dfe5f296c4d76b36a67f5f6d 1.9.1.1.tar.gz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment