Changeset 26211


Ignore:
Timestamp:
04/27/21 00:02:08 (4 years ago)
Author:
jdquinn
Message:

BUG: Temporary freeze of MITgcm until inconsistency with repo head is resolved

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/test/MITgcm/install.sh

    r23083 r26211  
    11#!/bin/bash
    22
    3 #Some cleanup
     3
     4# Cleanup
    45rm -rf install
    56
    6 #Download code from server
    7 git clone --depth=1 https://github.com/MITgcm/MITgcm.git
     7# # Download source
     8# git clone --depth=1 https://github.com/MITgcm/MITgcm.git
    89
    9 #Move
    10 mv MITgcm install
     10# # Move source to 'install' directory
     11# mv MITgcm install
     12
     13# Temporary freeze of source to tagged release ( remove the following and
     14# uncomment the above once issue is resolved)
     15#
     16
     17# Download source
     18wget https://github.com/MITgcm/MITgcm/archive/refs/tags/checkpoint67x.tar.gz
     19
     20# Uncompress source
     21tar -xvzf checkpoint67x.tar.gz
     22
     23# Move source to 'install' directory
     24mv MITgcm-checkpoint67x install
     25
     26
Note: See TracChangeset for help on using the changeset viewer.