Skip to content

Commit 4b2da5c

Browse files
committed
CIHelper: avoid using the name git.git for the pr-repo
Since GitGitGadget is currently being extended to handle projects other than Git, let's just settle on the naming `pr-repo` for the local clone of the GitHub repository whose Pull Requests are to be handled (and where GitGitGadget's state is recorded in the Git notes). Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 153badf commit 4b2da5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ci-helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class CIHelper {
5353
return configFile ? await getExternalConfig(configFile) : getConfig();
5454
}
5555

56-
public constructor(workDir: string = "git.git", config?: IConfig, skipUpdate?: boolean, gggConfigDir = ".") {
56+
public constructor(workDir: string = "pr-repo.git", config?: IConfig, skipUpdate?: boolean, gggConfigDir = ".") {
5757
this.config = config !== undefined ? setConfig(config) : getConfig();
5858
this.gggConfigDir = gggConfigDir;
5959
this.workDir = workDir;

0 commit comments

Comments
 (0)