Skip to content

Commit d3d23b2

Browse files
committed
Fix Makefile paths
1 parent cdcae9f commit d3d23b2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tools/make/lib/links/links.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
# VARIABLES #
33

44
# Define the command for inserting a link into the database:
5-
LINKS_INSERT ?= $(NODE) $(TOOLS_DIR)/links/create/bin/cli
5+
LINKS_INSERT ?= $(NODE) $(TOOLS_PKGS_DIR)/links/create/bin/cli
66

77
# Define the command-line options to be used when executing the command:
88
LINKS_INSERT_FLAGS ?= \
99
--database $(ROOT_DIR)/docs/links/database.json
1010

1111
# Define the command for resolving an id from a URI:
12-
LINKS_URI2ID ?= $(NODE) $(TOOLS_DIR)/links/uri2id/bin/cli
12+
LINKS_URI2ID ?= $(NODE) $(TOOLS_PKGS_DIR)/links/uri2id/bin/cli
1313

1414
# Define the command-line options to be used when executing the command:
1515
LINKS_URI2ID_FLAGS ?= \
1616
--database $(ROOT_DIR)/docs/links/database.json
1717

1818
# Define the command for resolving a URI from an id:
19-
LINKS_ID2URI ?= $(NODE) $(TOOLS_DIR)/links/id2uri/bin/cli
19+
LINKS_ID2URI ?= $(NODE) $(TOOLS_PKGS_DIR)/links/id2uri/bin/cli
2020

2121
# Define the command-line options to be used when executing the command:
2222
LINKS_ID2URI_FLAGS ?= \

0 commit comments

Comments
 (0)