archgraph-argo 0.6.3 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/install-argo.ps1 +2 -2
- package/package.json +1 -1
package/install-argo.ps1
CHANGED
|
@@ -67,11 +67,11 @@ function Add-AgentsRule {
|
|
|
67
67
|
)
|
|
68
68
|
|
|
69
69
|
New-Item -ItemType Directory -Force -Path (Split-Path $AgentsPath) | Out-Null
|
|
70
|
-
$ruleContent = Get-Content $RulePath -Raw
|
|
70
|
+
$ruleContent = Get-Content $RulePath -Raw -Encoding UTF8
|
|
71
71
|
$marker = 'ArchGraph ARGO Workflow Rules'
|
|
72
72
|
|
|
73
73
|
if (Test-Path $AgentsPath) {
|
|
74
|
-
$existing = Get-Content $AgentsPath -Raw
|
|
74
|
+
$existing = Get-Content $AgentsPath -Raw -Encoding UTF8
|
|
75
75
|
if ($existing -like "*$marker*") {
|
|
76
76
|
return
|
|
77
77
|
}
|
package/package.json
CHANGED