Fix PATH bug

This commit is contained in:
Radon Rosborough 2021-07-04 03:09:08 +00:00
parent ad9bd56bb8
commit 130fb8b34c
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
SHELL := bash
.SHELLFLAGS := -o pipefail -euc
export PATH := /src/bin:$(PATH)
export PATH := $(PWD)/bin:$(PATH)
-include .env
export