import { isGitInstalled } from "./git.js"; import { pullPathViaGit } from "../pathOperations/pullPathViaGit.js"; import { pullHarness } from "./pullHarness.js"; /** * Pull via git — checks git is installed, then delegates to pullHarness. */ export const pullViaGit = async (ctx, source, destination) => { if (!(await isGitInstalled())) { throw new Error('Git is not installed. Please install git to use pull command.'); } await pullHarness(pullPathViaGit)(ctx, source, destination); }; //# sourceMappingURL=pullViaGit.js.map