fix: remove doubled 'scripts' path in setup.ps1 copy loop - #10
Open
OlliverCrypto wants to merge 3 commits into
Open
fix: remove doubled 'scripts' path in setup.ps1 copy loop#10OlliverCrypto wants to merge 3 commits into
OlliverCrypto wants to merge 3 commits into
Conversation
added 3 commits
July 21, 2026 15:35
Line 78 used Join-Path $ScriptDir 'scripts' $script but $PSScriptRoot already resolves to the scripts/ directory, causing a doubled path: scripts/scripts/ssc-router.ps1 Fix: use Join-Path $ScriptDir $script directly. Fixes: setup.ps1 fails with 'Cannot find path' on fresh install
- Step-by-step installation instructions - Wiki ecosystem setup (Hyper-Extract, qmd, agentmemory) - AGENTS.md SSC protocol section - Cron job configuration - Verification steps - Known issues documented
- 5-phase checklist: Memory Structure, AGENTS.md, Wiki Ecosystem, Crons, Verification - Every step has a checkbox for tracking completion - Prerequisites section (PS 7+, Node 18+, Python 3.10+) - Known issues & fixes section - Quick reference table for all commands - SKILL.md updated with prerequisites and link to checklist
labsclaw
approved these changes
Jul 30, 2026
labsclaw
left a comment
Owner
There was a problem hiding this comment.
Fix correto. O já aponta para o diretório scripts/, então o Join-Path estava duplicando o caminho.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix: Doubled scripts/ path in setup.ps1
Problem
setup.ps1 line 78 used Join-Path $ScriptDir "scripts" $script but $PSScriptRoot already resolves to the scripts/ directory, causing a doubled path: scripts/scripts/ssc-router.ps1.
This makes setup.ps1 fail with:
Cannot find path 'C:\...\scripts\scripts\ssc-router.ps1' because it does not exist.Fix
Changed line 78 from:
powershell = Join-Path $ScriptDir "scripts" $scriptto:
powershell = Join-Path $ScriptDir $scriptTesting
Context
Found during setup on Windows with PowerShell 7.6.0. The bug is version-agnostic.