Skip to content

Commit c2acb2c

Browse files
committed
pulling github instead of dev branch
1 parent 481d9ca commit c2acb2c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ci/dockerfile_creator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ def add_load_gemc(tag: str) -> str:
4141
commands = f'\nRUN echo "module load gemc/{tag}" >> {remote_setup_filename()}\n'
4242
return commands
4343

44+
# commands += f' && git clone -c advice.detachedHead=false --recurse-submodules --single-branch -b {tag} http://github.com/gemc/src /root/src \\\n'
4445
def install_gemc(tag: str) -> str:
4546
commands = f'\nRUN source {remote_setup_filename()} \\\n'
46-
commands += f' && git clone -c advice.detachedHead=false --recurse-submodules --single-branch -b {tag} http://github.com/gemc/src /root/src \\\n'
47+
commands += f' && git clone http://github.com/gemc/src /root/src \\\n'
4748
commands += f' && cd /root/src \\\n'
4849
commands += f' && ./ci/build.sh \n'
4950
return commands

0 commit comments

Comments
 (0)