-
Notifications
You must be signed in to change notification settings - Fork 16
fix: Unify all domain references to cxlinux.ai #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -130,7 +130,7 @@ CX uses a signed APT repository with deb822 format: | |
| ``` | ||
| # /etc/apt/sources.list.d/cx.sources | ||
| Types: deb | ||
| URIs: https://repo.cxlinux-ai.com/apt | ||
| URIs: https://repo.cxlinux.ai/apt | ||
| Suites: cx cx-updates cx-security | ||
| Components: main | ||
| Signed-By: /usr/share/keyrings/cx-archive-keyring.gpg | ||
|
|
@@ -227,17 +227,17 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. | |
| ## Related Repositories | ||
|
|
||
| - [cortex](https://github.com/cxlinux-ai/cortex) - AI-powered package manager CLI | ||
| - [website](https://github.com/cxlinux-ai/website) - cxlinux-ai.com | ||
| - [website](https://github.com/cxlinux-ai/website) - https://cxlinux.ai | ||
|
|
||
| ## License | ||
|
|
||
| BSL 1.1 - See [LICENSE](LICENSE) | ||
|
|
||
| ## Support | ||
|
|
||
| - Documentation: https://cxlinux-ai.com/docs | ||
| - Issues: https://github.com/cxlinux-ai/cx-distro/issues | ||
| - Discord: https://discord.gg/cxlinux-ai | ||
| - Documentation: <https://cxlinux.ai/docs> | ||
| - Issues: <https://github.com/cxlinux-ai/cx-distro/issues> | ||
| - Discord: <https://discord.gg/cxlinux-ai> | ||
|
Comment on lines
+243
to
+245
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Search for old domain references in all file types
echo "=== Searching for old domain references in all files ==="
echo ""
echo "## Checking for cxlinux-ai.com references:"
rg -n 'cxlinux-ai\.com' --type-add 'config:*.{json,toml,yml,yaml,ini,conf}' -t config -t sh -t python -t js -t ts 2>&1 | head -50 || echo "None found in common file types"
echo -e "\n## Checking for cortexlinux.com references:"
rg -n 'cortexlinux\.com' --type-add 'config:*.{json,toml,yml,yaml,ini,conf}' -t config -t sh -t python -t js -t ts 2>&1 | head -50 || echo "None found in common file types"
echo -e "\n## Checking for cxlinux.com references:"
rg -n 'cxlinux\.com' --type-add 'config:*.{json,toml,yml,yaml,ini,conf}' -t config -t sh -t python -t js -t ts 2>&1 | head -50 || echo "None found in common file types"
echo -e "\n## Comprehensive search (all files, excluding .git):"
rg -n 'cxlinux-ai\.com|cortexlinux\.com|cxlinux\.com' -g '!.git/' 2>&1 | head -100 || echo "None found"Repository: cxlinux-ai/cx-distro Length of output: 17074 Update domain references in non-markdown files. The PR missed updating old domain references across multiple file types. The comprehensive search found:
Affected locations include:
🤖 Prompt for AI Agents |
||
|
|
||
| --- | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.