Compare commits

3 Commits

Author SHA1 Message Date
b31630a6c0 Merge pull request #4 from Caio1w/Solved-Issue#3
Solved Issue #3
2025-10-28 21:25:51 -03:00
Caio1w
25eabc92ed Update const.go 2025-10-28 21:23:14 -03:00
a111b060f1 Merge pull request #2 from roboogg133/build-system
A scrap of Packet.lua ecosystem
2025-10-26 21:53:15 -03:00
2 changed files with 1 additions and 5 deletions

View File

@@ -8,10 +8,6 @@ return {
type = "remote",
serial = 0,
arch = {"x86_65"},
os = {"linux"},
dependencies = {},
build_dependencies = {["go"] = ">=1.25.1"},
git_url = "https://github.com/roboogg133/packets.git",

View File

@@ -44,7 +44,7 @@ CREATE INDEX index_dependency_name ON package_dependencies(dependency_name);
CREATE TABLE IF NOT EXISTS build_dependencies (
id TEXT PRIMARY KEY,
dir TEXT NOT NULL DEFAULT "/dev/null"
dir TEXT NOT NULL DEFAULT "/dev/null",
uses INTEGER NOT NULL DEFAULT 0
);
`