Revision f2f1eba2302f028431a132dfd1a5309520697a0c authored by Robert Jacob on 09 September 2021, 17:52:25 UTC, committed by GitHub on 09 September 2021, 17:52:25 UTC
This PR removes a bug that was introduced with the last PR that added a backup HTTP server with the Singularity source code tarball.
2 parent s 9a5dab5 + 52167a2
Raw File
checkout.sh
#!/bin/bash

# Replace all ssh URLs to submodules with HTTP URLs
sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
git submodule update --init
back to top