Updated Migration from Devine (markdown)

Sp5rky
2025-07-30 17:27:09 -06:00
parent 47c2ef8fda
commit 88d5b0852c

@@ -8,11 +8,13 @@ find unshackle/services/ -type f -name "*.py" -exec sed -i 's/from devine/from u
```
Windows
```powershell
Get-ChildItem "unshackle/services" -Recurse -Filter *.py |
Get-ChildItem -Path "unshackle/services" -Recurse -Filter *.py -File |
ForEach-Object {
(Get-Content -Raw $_) -replace 'from devine', 'from unshackle' |
Set-Content $_
$f = $_.FullName
(Get-Content -Raw -LiteralPath $f) -replace 'from devine', 'from unshackle' |
Set-Content -LiteralPath $f
}
```
MacOS
```bash