From 52aacc6dac6fa2b7876f65b3bafa22d01bec99f8 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Fri, 21 Apr 2023 21:31:11 -0400 Subject: fix: bug with make and cd not working as expected --- makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 832c245..08e14f2 100644 --- a/makefile +++ b/makefile @@ -54,12 +54,8 @@ CURRENT_DIR=`pwd` build: $(SRC) $(PLUGS) $(CONFIG) # Recompute constants - cd /plugins/readability/ - sh recompute_READABILITY_N.sh - cd - - cd /plugins/style - sh recompute_STYLE_N.sh - cd - + cd plugins/readability/ && sh recompute_READABILITY_N.sh + cd plugins/style && sh recompute_STYLE_N.sh # Make cache mkdir -p $(CURRENT_CACHE_DIR) # Hardcode cache path -- cgit v1.2.3