Update src/v1/ paths for CI cron (#337)

Summary:
Fixes breakage due to https://github.com/sourcecred/sourcecred/pull/327.

Test Plan:
`yarn travis --full` now passes.

wchargin-branch: src-v1-cron
This commit is contained in:
William Chargin 2018-06-04 14:16:43 -07:00 committed by GitHub
parent 3ac051b16c
commit 3e83576422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -74,12 +74,12 @@ function makeTasks(mode /*: "BASIC" | "FULL" */) {
}, },
{ {
id: "fetchGithubRepoTest", id: "fetchGithubRepoTest",
cmd: ["./src/plugins/github/fetchGithubRepoTest.sh", "--no-build"], cmd: ["./src/v1/plugins/github/fetchGithubRepoTest.sh", "--no-build"],
deps: ["backend-in-place"], deps: ["backend-in-place"],
}, },
{ {
id: "loadRepositoryTest", id: "loadRepositoryTest",
cmd: ["./src/plugins/git/loadRepositoryTest.sh", "--no-build"], cmd: ["./src/v1/plugins/git/loadRepositoryTest.sh", "--no-build"],
deps: ["backend-in-place"], deps: ["backend-in-place"],
}, },
]; ];

View File

@ -2,7 +2,7 @@
set -eu set -eu
data_file=src/plugins/git/demoData/example-git.json data_file=src/v1/plugins/git/demoData/example-git.json
usage() { usage() {
printf 'usage: %s [-u|--updateSnapshot] [--help]\n' "$0" printf 'usage: %s [-u|--updateSnapshot] [--help]\n' "$0"

View File

@ -2,7 +2,7 @@
set -eu set -eu
data_file=src/plugins/github/demoData/example-github.json data_file=src/v1/plugins/github/demoData/example-github.json
usage() { usage() {
printf 'usage: %s [-u|--updateSnapshot] [--[no-]build] [--help]\n' "$0" printf 'usage: %s [-u|--updateSnapshot] [--[no-]build] [--help]\n' "$0"