Skip to content

Commit

Permalink
remove test code
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercactapus committed Jan 25, 2024
1 parent d70cadf commit cbe953a
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ PG_VERSION=13
# add all files except those under web/src/build and web/src/cypress
NODE_DEPS=.pnp.cjs .yarnrc.yml .gitrev $(shell find web/src -path web/src/build -prune -o -path web/src/cypress -prune -o -type f -print)

# add .git/HEAD if it exists to NODE_DEPS
# this is used to trigger a rebuild when committing changes to git
# since the git commit hash is used in the build as the version
ifneq ("$(wildcard .git/HEAD)","")
NODE_DEPS += .git/HEAD
endif

# Use sha256sum on linux and shasum -a 256 on mac
SHA_CMD := $(shell if [ -x "$(shell command -v sha256sum 2>/dev/null)" ]; then echo "sha256sum"; else echo "shasum -a 256"; fi)

Expand Down

0 comments on commit cbe953a

Please sign in to comment.