Skip to content

Commit 8dde46d

Browse files
committed
Fix
1 parent e513e67 commit 8dde46d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Uploader/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static async Task Main(string host = "", string name = "", string password = "",
4040
});
4141
var md5s = artifactDirectory
4242
.EnumerateFiles("*.md5", SearchOption.AllDirectories)
43-
.Select(_ => (name: _.Name + _.Extension, file: _));
43+
.Select(_ => (name: _.Name, file: _));
4444
var files = packs.Concat(md5s);
4545

4646
Console.WriteLine("待上传的文件数目:{0}", files.Count());
@@ -149,7 +149,7 @@ async static Task UpdateAutobuildAssets(GitHubClient client, IEnumerable<(string
149149
fileStream,
150150
timeout: null);
151151
await client.Repository.Release.UploadAsset(release, newAsset);
152-
Log.Information("<Autobuilder> 上传文件:{0}", name);
152+
Log.Information("<Autobuild> 上传文件:{0}", name);
153153

154154
}
155155
}

0 commit comments

Comments
 (0)