Skip to content

Commit 7042918

Browse files
Update README
1 parent 50daf77 commit 7042918

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
SHELL := /bin/bash
2-
PROJ_NAME=vba_parser
2+
PROJ_NAME=wake
3+
VENV_NAME=.venv
34

45
# If the first argument is "rename"...
56
ifeq (rename,$(firstword $(MAKECMDGOALS)))
@@ -23,20 +24,19 @@ rename: ## Rename this project. Args: <new-proj-name>
2324
[ -f "$$f" ] && sed -i 's/$(PROJ_NAME)/$(RUN_ARGS)/g' $$f; \
2425
done
2526

26-
2727
init: ## Install package and its dependencies into virtual environment
28-
python -m venv .venv
29-
source .venv/bin/activate \
28+
python -m venv $(VENV_NAME)
29+
source $(VENV_NAME)/bin/activate \
3030
&& python -m pip install --upgrade pip \
3131
&& pip install -r requirements-dev.txt \
3232
&& pip install -e .
3333

3434
run: ## Run example
35-
source .venv/bin/activate \
35+
source $(VENV_NAME)/bin/activate \
3636
&& python -m example
3737

3838
clean: ## Clean virtual environment
39-
rm -rf .venv
39+
rm -rf $(VENV_NAME)
4040
rm -rf src/$(PROJ_NAME).egg-info
4141
find . -name "__pycache__" -type d -exec rm -rf {} +
4242
find . -name ".pytest_cache" -type d -exec rm -rf {} +

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# wake
22
Build tool for windows, similar to `make`
33

4-
![alt text](https://github.com/stanislavsabev/wake/blob/main/wake.jpg?raw=true)
4+
![alt text](https://github.com/stanislavsabev/wake/blob/main/assets/wake.jpg?raw=true)
55

66
**NOTE:** Still in progress
77

0 commit comments

Comments
 (0)