Skip to content

Commit

Permalink
Revert "cleanup: fix grep warning about unnecessary backslash"
Browse files Browse the repository at this point in the history
Apparently my local `make` interprets this differently to `make` on the
GitHub runner. Different versions maybe? Not sure. Anyway, it broke the
build.

This reverts commit ab96085.
  • Loading branch information
johnbartholomew committed Feb 8, 2024
1 parent ab96085 commit c97b7e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ LDFLAGS ?=

SHARED_LDFLAGS ?= -shared

VERSION := $(shell grep '#define.*LIB_JSONNET_VERSION' include/libjsonnet.h | head -n 1 | cut -f 2 -d '"' | sed 's/^v//g' )
VERSION := $(shell grep '\#define.*LIB_JSONNET_VERSION' include/libjsonnet.h | head -n 1 | cut -f 2 -d '"' | sed 's/^v//g' )
SOVERSION = 0

################################################################################
Expand Down

0 comments on commit c97b7e8

Please sign in to comment.