Merge pull request #621 from thockin/remove-vestigial-field-sync-command
Remove now-obsolete flag from struct
This commit is contained in:
commit
a1837b827a
|
|
@ -279,7 +279,6 @@ type repoSync struct {
|
||||||
link string // the name of the symlink to publish under `root`
|
link string // the name of the symlink to publish under `root`
|
||||||
authURL string // a URL to re-fetch credentials, or ""
|
authURL string // a URL to re-fetch credentials, or ""
|
||||||
sparseFile string // path to a sparse-checkout file
|
sparseFile string // path to a sparse-checkout file
|
||||||
syncHookCmd string // command to run after each sync
|
|
||||||
log *logging.Logger
|
log *logging.Logger
|
||||||
run *cmd.Runner
|
run *cmd.Runner
|
||||||
}
|
}
|
||||||
|
|
@ -496,7 +495,6 @@ func main() {
|
||||||
link: absLink,
|
link: absLink,
|
||||||
authURL: *flAskPassURL,
|
authURL: *flAskPassURL,
|
||||||
sparseFile: *flSparseCheckoutFile,
|
sparseFile: *flSparseCheckoutFile,
|
||||||
syncHookCmd: *flSyncHookCommand,
|
|
||||||
log: log,
|
log: log,
|
||||||
run: cmdRunner,
|
run: cmdRunner,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue