mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
This is a test. I don't understand the details of how the `bundle config build.charlock_holmes` bit works/fails, so the intent here is to get a PR posted for purposes of getting feedback via the full Travis machinery.
14 lines
361 B
Bash
Executable File
14 lines
361 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
# Fetch all commits/refs needed to run our tests.
|
|
git fetch origin master:master v2.0.0:v2.0.0 test/attributes:test/attributes test/master:test/master
|
|
|
|
# Replace SSH links to submodules by HTTPS links.
|
|
sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
|
|
|
|
git submodule init
|
|
git submodule sync --quiet
|
|
script/fast-submodule-update
|