Skip to content

Commit

Permalink
rel: fix github repo hashes for release
Browse files Browse the repository at this point in the history
  • Loading branch information
satra committed May 30, 2017
1 parent a26e0c0 commit d01d522
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Simple_Prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ if [ ! -e scripts/expected_output ]; then
echo "Getting the analysis repo"
if [ $(command -v git) ]; then
git clone https://github.com/ReproNim/simple_workflow scripts
# TODO: add git checkout of specific hash when finalized
cd scripts
git checkout a26e0c01227c8baa0756b9e95a0442d69e9c9e10
elif [ $(command -v unzip) ]; then
curl -ssL -o workdir.zip https://github.com/ReproNim/simple_workflow/archive/master.zip
# TODO: add download of specific commit hash when finalized
curl -ssL -o workdir.zip https://github.com/ReproNim/simple_workflow/archive/a26e0c01227c8baa0756b9e95a0442d69e9c9e10.zip
unzip workdir.zip && rm workdir.zip
mv simple_workflow-master scripts
mv simple_workflow-a26e0c01227c8baa0756b9e95a0442d69e9c9e10 scripts
else
echo "Neither git not unzip available. Cannot download scripts"
exit 1
Expand Down

0 comments on commit d01d522

Please sign in to comment.