8 lines
100 B
Bash
8 lines
100 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
echo "Updating Weboob..."
|
||
|
cd /home/user/weboob
|
||
|
git pull
|
||
|
pip install --upgrade .
|