We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b760eac + 66f3509 commit bc2db17Copy full SHA for bc2db17
2 files changed
.gitignore
@@ -51,7 +51,12 @@ __pycache__/
51
# Ada/SPARK
52
*.ali
53
/obj/
54
-/bin/
+# `/bin/` excludes the directory itself, which makes git unable to re-include
55
+# files inside it (negations can't re-include children of an excluded dir).
56
+# `/bin/*` excludes the *contents* so `!bin/*.ml` and `!bin/dune` actually
57
+# re-include their targets. The previous `/bin/` form silently dropped
58
+# bin/dune from origin and broke CI's executable build.
59
+/bin/*
60
!bin/*.ml
61
!bin/dune
62
bin/dune
@@ -0,0 +1,7 @@
1
+; SPDX-License-Identifier: MIT OR AGPL-3.0-or-later
2
+
3
+(executable
4
+ (name main)
5
+ (public_name affinescript)
6
+ (package affinescript)
7
+ (libraries affinescript cmdliner fmt fmt.tty))
0 commit comments