Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bf77e21

Browse files
KN4CK3Rawkwardbunnytechknowlogick
authoredApr 28, 2023
Add Debian package registry (#22854)
Co-authored-by: @awkwardbunny This PR adds a Debian package registry. You can follow [this tutorial](https://www.baeldung.com/linux/create-debian-package) to build a *.deb package for testing. Source packages are not supported at the moment and I did not find documentation of the architecture "all" and how these packages should be treated. --------- Co-authored-by: Brian Hong <[email protected]> Co-authored-by: techknowlogick <[email protected]>
1 parent bc4e061 commit bf77e21

File tree

57 files changed

+1995
-96
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1995
-96
lines changed
 

‎assets/go-licenses.json

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎cmd/migrate_storage_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func TestMigratePackages(t *testing.T) {
2525
creator := unittest.AssertExistsAndLoadBean(t, &user_model.User{ID: 1})
2626

2727
content := "package main\n\nfunc main() {\nfmt.Println(\"hi\")\n}\n"
28-
buf, err := packages_module.CreateHashedBufferFromReader(strings.NewReader(content), 1024)
28+
buf, err := packages_module.CreateHashedBufferFromReaderWithSize(strings.NewReader(content), 1024)
2929
assert.NoError(t, err)
3030
defer buf.Close()
3131

0 commit comments

Comments
 (0)
Please sign in to comment.