summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-09-04 04:33:36 +0200
committerAhmed Abdelhalim <[email protected]>2025-09-04 04:33:36 +0200
commit3cffeec43dcd9395447de3e66b15ede1a787614d (patch)
tree246635bf934c1778b8f0cc855170ff78a192ebb2
parent84a8afbc7963c006bbd5264d409c514e2d4c6532 (diff)
Make the testing commands generic
-rw-r--r--CLAUDE.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/CLAUDE.md b/CLAUDE.md
index 82474d1a..29296755 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -41,10 +41,10 @@ molecule verify -s archlinux # Run verify only
```bash
# Copy to remote machine for debugging
-rsync -r . archlinux.local:/opt/ansible-distro-configure
+rsync -r . <HOST>:/opt/ansible-distro-configure
# Run on remote machine with proper PATH
-ssh archlinux.local "cd /opt/ansible-distro-configure && PATH=~/.local/bin:\$PATH ~/.local/bin/molecule test -s archlinux"
+ssh <HOST> "cd /opt/ansible-distro-configure && PATH=~/.local/bin:\$PATH ~/.local/bin/molecule test -s archlinux"
```
## Architecture Overview