9 lines
185 B
Bash
Executable file
9 lines
185 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ ! -d FoenixMgr ]]; then
|
|
sudo apt-get install -y pip
|
|
git clone https://github.com/pweingar/FoenixMgr.git
|
|
pushd FoenixMgr
|
|
pip install -r requirements.txt
|
|
popd
|
|
fi
|