Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita58864e

Browse files
authored
chore: upgrade to mutagen 0.18.2 (#75)
1 parentbd221c4 commita58864e

27 files changed

+29
-28
lines changed

‎MutagenSdk/Proto/filesystem/behavior/probe_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/selection/selection.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/service/daemon/daemon.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/service/prompting/prompting.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/service/synchronization/synchronization.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/compression/algorithm.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/configuration.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/change.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/conflict.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/entry.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/ignore/ignore_vcs_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/ignore/syntax.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/permissions_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/problem.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/core/symbolic_link_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/hashing/algorithm.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/rsync/receive.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/scan_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/session.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/stage_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/state.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/version.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/synchronization/watch_mode.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Proto/url/url.proto

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎MutagenSdk/Update-Proto.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ param (
66

77
$ErrorActionPreference="Stop"
88

9-
$repo="mutagen-io/mutagen"
9+
$repo="coder/mutagen"
1010
$protoPrefix="pkg"
1111
$entryFiles=@(
1212
"service/daemon/daemon.proto",
@@ -24,7 +24,7 @@ if (Test-Path $cloneDir) {
2424
Push-Location$cloneDir
2525
try {
2626
&git.execlean-fdx
27-
if ($LASTEXITCODE-ne0) {throw"Failed to clean$mutagenTag" }
27+
if ($LASTEXITCODE-ne0) {throw"Failed to clean$cloneDir" }
2828
# If we're already on the tag, we don't need to fetch or checkout.
2929
if ((&git.exe name-rev--name-only HEAD)-eq"tags/$mutagenTag") {
3030
Write-Host"Already on$mutagenTag"
@@ -96,6 +96,7 @@ foreach ($entryFile in $entryFiles) {
9696

9797
$repoRoot=Resolve-Path (Join-Path$PSScriptRoot"..")
9898
Push-Location$repoRoot
99+
$outputDir=Resolve-Path$outputDir
99100
if (Test-Path$outputDir) {
100101
Remove-Item-Recurse-Force$outputDir
101102
}

‎scripts/Get-Mutagen.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $goArch = switch ($arch) {
3131

3232
# Download the mutagen binary from our bucket for this platform if we don't have
3333
# it yet (or it's different).
34-
$mutagenVersion="v0.18.1"
34+
$mutagenVersion="v0.18.2"
3535
$mutagenPath=Join-Path$PSScriptRoot"files\mutagen-windows-$($arch).exe"
3636
$mutagenUrl="https://storage.googleapis.com/coder-desktop/mutagen/$($mutagenVersion)/mutagen-windows-$($goArch).exe"
3737
$mutagenEtagFile=$mutagenPath+".etag"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp