Skip to content

Commit 36835c1

Browse files
committed
Update [skip ci]
1 parent 978f9b8 commit 36835c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

1k/1kiss.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ $1k.println("proj_dir=$((Get-Location).Path), install_prefix=$install_prefix")
516516
$sentry_file = Join-Path $PSScriptRoot '.active-mirror'
517517

518518
if ($1k.isfile($sentry_file)) {
519-
$Script:ACTIVE_MIRROR = Get-Content $sentry_file -Raw
519+
$Script:ACTIVE_MIRROR = Get-Content $sentry_file
520520
}
521521
else {
522522
$Script:ACTIVE_MIRROR = 'origin'

1k/fetch.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ if (!$url) {
114114
$lib_src = Join-Path $prefix $name
115115
$active_mirror_file = Join-Path $PSScriptRoot '.active-mirror'
116116
if (Test-Path $active_mirror_file -PathType Leaf) {
117-
$active_mirror = Get-Content $active_mirror_file -Raw
117+
$active_mirror = Get-Content $active_mirror_file
118118
}
119119
else {
120120
$active_mirror = 'origin'

1k/resolv-url.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ else {
4343
if (Test-Path $mirror_path -PathType Leaf) {
4444
$active_mirror_file = Join-Path $PSScriptRoot '.active-mirror'
4545
if (Test-Path $active_mirror_file -PathType Leaf) {
46-
$active_mirror = Get-Content $active_mirror_file -Raw
46+
$active_mirror = Get-Content $active_mirror_file
4747
}
4848
else {
4949
$active_mirror = 'origin'

0 commit comments

Comments
 (0)