We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c09d52f commit 3e05dc7Copy full SHA for 3e05dc7
1 file changed
doc/Jamfile.v2
@@ -2,18 +2,23 @@
2
# Distributed under the Boost Software License, Version 1.0. (See accompanying
3
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
4
5
+import path ;
6
+
7
make html_ : build_antora.sh : @run-script ;
8
9
actions run-script
10
{
11
bash $(>)
12
}
13
14
+path-constant DOC_DIR : . ;
15
+.node_modules = [ path.join $(DOC_DIR) node_modules ] ;
16
17
make cleanup_node_modules_ : html_ : @cleanup-node-modules ;
18
19
actions cleanup-node-modules
20
- bash -c "rm -rf node_modules"
21
+ rm -rf $(.node_modules)
22
23
24
###############################################################################
0 commit comments