Skip to content

Commit b433542

Browse files
committed
🎨 Improve error message formatting in clean script
1 parent 23548da commit b433542

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

docs/getting-started/installation.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ pip install git+https://github.com/bybatkhuu/model.python-template.git
5454
```sh
5555
# Install directly from the source code:
5656
pip install .
57+
5758
# Or install with editable mode:
5859
pip install -e .
5960
```
@@ -72,6 +73,7 @@ pip install -r ./requirements/requirements.dev.txt
7273
```sh
7374
# Install from .whl file:
7475
pip install ./simple_model-[VERSION]-py3-none-any.whl
76+
7577
# Or install from .tar.gz file:
7678
pip install ./simple_model-[VERSION].tar.gz
7779
```

scripts/clean.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ main()
2727
_IS_ALL=true
2828
shift;;
2929
*)
30-
echo "[ERROR]: Failed to parsing input -> ${_input}!"
30+
echo "[ERROR]: Failed to parsing input -> ${_input}"
3131
echo "[INFO]: USAGE: ${0} -a, --all"
3232
exit 1;;
3333
esac

0 commit comments

Comments
 (0)