Skip to content

Commit 2fdb3e8

Browse files
committed
chore: Update template and skill downloads to getsentry org
Point template-manager.ts and install-skill.sh to getsentry org for downloads.
1 parent 56d5145 commit 2fdb3e8

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

scripts/install-skill.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ esac
236236
skill_dir="${destination}/${skill_dir_name}"
237237
alt_dir="${destination}/${alt_dir_name}"
238238
skill_path="skills/${skill_dir_name}/SKILL.md"
239-
skill_base_url="https://raw.githubusercontent.com/cameroncooke/XcodeBuildMCP"
239+
skill_base_url="https://raw.githubusercontent.com/getsentry/XcodeBuildMCP"
240240
skill_ref="main"
241241

242242
if [[ -n "${skill_ref_override}" ]]; then

src/utils/template-manager.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { getConfig } from './config-store.ts';
1111
* Template manager for downloading and managing project templates
1212
*/
1313
export class TemplateManager {
14-
private static readonly GITHUB_ORG = 'cameroncooke';
14+
private static readonly GITHUB_ORG = 'getsentry';
1515
private static readonly IOS_TEMPLATE_REPO = 'XcodeBuildMCP-iOS-Template';
1616
private static readonly MACOS_TEMPLATE_REPO = 'XcodeBuildMCP-macOS-Template';
1717

@@ -86,7 +86,6 @@ export class TemplateManager {
8686
log('info', `Downloading ${platform} template ${version} from GitHub...`);
8787
log('info', `Download URL: ${downloadUrl}`);
8888

89-
// Download the release artifact
9089
const curlResult = await commandExecutor(
9190
['curl', '-L', '-f', '-o', zipPath, downloadUrl],
9291
'Download Template',

0 commit comments

Comments
 (0)