Skip to content

Commit

Permalink
fixing makefile and generated path
Browse files Browse the repository at this point in the history
  • Loading branch information
adilansari committed Apr 24, 2023
1 parent 744b834 commit 3ca60e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ dmypy.json
.idea/

# generated
.src/generated/
.generated-src/
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PROTO_PATH=./api/proto
PROTO_FILE_PATH=${PROTO_PATH}/server/v1
GENERATED_DIR=./src/generated/
GENERATED_DIR=./generated-src/

clean:
rm -rf ./src/generated/
rm -rf ${GENERATED_DIR}

generate:
mkdir -p ${GENERATED_DIR}
Expand Down

0 comments on commit 3ca60e3

Please sign in to comment.