Change the default repo (#35)

This commit is contained in:
SplatboyDev 2023-01-27 03:21:19 -08:00 committed by GitHub
parent 8cad805199
commit 17bde4dafc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -28,6 +28,7 @@ export const download = async (options: Options): Promise<void> => {
log.success( log.success(
`You should be ready to make changes to ${config.name}.`, `You should be ready to make changes to ${config.name}.`,
'', '',
'Remember to change the repository in configs/common/mozconfig to your own.',
`You should import the patches next, run |${bin_name} import|.`, `You should import the patches next, run |${bin_name} import|.`,
`To begin building ${config.name}, run |${bin_name} build|.` `To begin building ${config.name}, run |${bin_name} build|.`
) )

View file

@ -14,7 +14,8 @@ export MOZ_DISTRIBUTION_ID=${appId}
# Misc # Misc
export MOZ_STUB_INSTALLER=1 export MOZ_STUB_INSTALLER=1
export MOZ_INCLUDE_SOURCE_INFO=1 export MOZ_INCLUDE_SOURCE_INFO=1
export MOZ_SOURCE_REPO=https://github.com/dothq/browser-desktop # Change the below repository to your GitHub repository.
export MOZ_SOURCE_REPO=https://github.com/example/example
export MOZ_SOURCE_CHANGESET=${changeset} export MOZ_SOURCE_CHANGESET=${changeset}
# Bootstrap # Bootstrap