mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-11 20:02:09 +00:00
8 lines
126 B
Bash
Executable File
8 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d "venv" ]; then
|
|
python -m venv venv
|
|
fi
|
|
venv/bin/pip install texttest
|
|
venv/bin/texttest -d . -con "$@"
|