Skip to content

Commit efc28a3

Browse files
committed
try to fix nix build
1 parent ba5fd5c commit efc28a3

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ jobs:
204204
echo "Error: Nix build output 'result' symlink not found"
205205
exit 1
206206
fi
207-
if [ ! -f "result/bin/openspec" ]; then
208-
echo "Error: openspec binary not found in build output"
207+
if [ ! -f "result/bin/openspec-cn" ]; then
208+
echo "Error: openspec-cn binary not found in build output"
209209
exit 1
210210
fi
211211
echo "✅ Build output verified"

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@
4949

5050
meta = with pkgs.lib; {
5151
description = "AI-native system for spec-driven development";
52-
homepage = "https://github.com/Fission-AI/OpenSpec";
52+
homepage = "https://github.com/studyzy/OpenSpec-cn";
5353
license = licenses.mit;
5454
maintainers = [ ];
55-
mainProgram = "openspec";
55+
mainProgram = "openspec-cn";
5656
};
5757
});
5858
});
5959

6060
apps = forAllSystems (system: {
6161
default = {
6262
type = "app";
63-
program = "${self.packages.${system}.default}/bin/openspec";
63+
program = "${self.packages.${system}.default}/bin/openspec-cn";
6464
};
6565
});
6666

0 commit comments

Comments
 (0)