Skip to content

Commit

Permalink
Merge pull request #25 from erlangpack/path-spaces
Browse files Browse the repository at this point in the history
Fix a problem where compilation failed if bcrypt abspath has spaces in it
  • Loading branch information
mworrell authored Jul 14, 2021
2 parents b09e8f9 + 0647750 commit 3634f2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

strategy:
matrix:
otp_version: [21.3,22.3,23]
otp_version: [21.3, 22.3, 23, 24]
os: [ubuntu-latest]

container:
Expand Down
4 changes: 2 additions & 2 deletions c_src/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Based on c_src.mk from erlang.mk by Loic Hoguin <[email protected]>

CURDIR := $(shell pwd)
BASEDIR := $(abspath $(CURDIR)/..)
CURDIR := .
BASEDIR := ..

PROJECT ?= $(notdir $(BASEDIR))
PROJECT := $(strip $(PROJECT))
Expand Down

0 comments on commit 3634f2f

Please sign in to comment.