diff options
| author | Xe Iaso <me@xeiaso.net> | 2025-04-06 00:25:23 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2025-04-06 00:26:02 -0400 |
| commit | 600def5eafda7adb6f1a779f4077a35fe73a868f (patch) | |
| tree | 891457ca7c409305ef4cdec9947f54e7f4b827b0 | |
| parent | 878b37178d5b55046871ce53371eec5efb52cc78 (diff) | |
| download | anubis-600def5eafda7adb6f1a779f4077a35fe73a868f.tar.xz anubis-600def5eafda7adb6f1a779f4077a35fe73a868f.zip | |
package.json: fix build commandXe/fix-build-command
Closes #225
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | .github/workflows/go.yml | 2 | ||||
| -rw-r--r-- | package.json | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0be7b37..18a8df7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -77,7 +77,7 @@ jobs: npm run assets - name: Build - run: go build ./... + run: npm run build - name: Test run: npm run test diff --git a/package.json b/package.json index e8b4eb2..cfff0b6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "test": "npm run assets && go test ./...", "test:integration": "npm run assets && go test -v ./internal/test", "assets": "go generate ./... && ./web/build.sh && ./xess/build.sh", - "build": "npm run assets && go build -o ./var/anubis ../cmd/anubis", + "build": "npm run assets && go build -o ./var/anubis ./cmd/anubis", "dev": "npm run assets && go run ./cmd/anubis --use-remote-address", "container": "npm run assets && go run ./cmd/containerbuild", "package": "yeet" |
