Commit 6b9f250 authored and committed Jun 11, 2024 · 4 / 5 · Verified
1 parent c47801d commit 6b9f250 Copy full SHA for 6b9f250
File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
OUT := dist
2
2
3
3
GHC := 9.6.3
4
- STYLISH_HASKELL_VERSION := 0.14.5 .0
4
+ STYLISH_HASKELL_VERSION := 0.13.0 .0
5
5
6
6
# Default network for snapshots.
7
7
NETWORK := preview
@@ -15,7 +15,8 @@ VERSION := $(shell cat package.yaml| grep "version:" | sed "s/[^0-9]*\([0-9]\)\(
15
15
TAG := $(shell echo $(VERSION ) | sed "s/^0$$/nightly/")
16
16
CONFIG := $(shell pwd) /config/network/$(NETWORK )
17
17
CACHEDIR := ${HOME}/.cache/kupo/${NETWORK}
18
- BIN_DIR_PATH := dist-newstyle/build/$(ARCH ) -$(OS ) /ghc-$(GHC ) /kupo-$(VERSION ) /x/kupo/build/kupo
18
+ BUILD_DIR_PATH := dist-newstyle/build/$(ARCH ) -$(OS ) /ghc-$(GHC ) /kupo-$(VERSION )
19
+ BIN_DIR_PATH := $(BUILD_DIR_PATH ) /x/kupo/build/kupo
19
20
20
21
ifeq ($(postgres ) , true)
21
22
PG_FLAG := -f postgres
@@ -103,7 +104,7 @@ doc: # Serve the rendered documentation on \033[0;33m<http://localhost:8000>\033
103
104
104
105
clean : # Remove build artifacts
105
106
rm -r $(OUT ) 2> /dev/null && echo " Removed $( OUT) " || \
106
- rm -r $(BIN_DIR_PATH ) 2> /dev/null && echo " Removed $( BIN_DIR_PATH ) " || \
107
+ rm -r $(BUILD_DIR_PATH ) 2> /dev/null && echo " Removed $( BUILD_DIR_PATH ) " || \
107
108
rm cabal.project.freeze 2> /dev/null && echo " Removed cabal.project.freeze" || true
108
109
echo " Finished cleaning."
109
110
You can’t perform that action at this time.
0 commit comments