Commit 863fb01d authored by Antonio Ragagnin's avatar Antonio Ragagnin 💬
Browse files

clone use pip -e .[edit]

parent b5cad1a6
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -31,6 +31,7 @@ if [ ! -z "$clona" ]; then
    . .env
    . .env
    [[ ! -d "venv" ]] && python3 -mvenv venv
    [[ ! -d "venv" ]] && python3 -mvenv venv
    . venv/bin/activate
    . venv/bin/activate
    pip install --upgrade pip
    pip install autopep8
    pip install autopep8
    pip install matplotlib
    pip install matplotlib
    for REPO in "${REPOS[@]}"; do
    for REPO in "${REPOS[@]}"; do
@@ -39,7 +40,7 @@ if [ ! -z "$clona" ]; then
        pushd $REPO
        pushd $REPO
        git switch dev || echo no dev branch
        git switch dev || echo no dev branch
	if [[ "$REPO" != "gitlab-profile" ]]; then
	if [[ "$REPO" != "gitlab-profile" ]]; then
	    [ ! -z "$pyinsta" ] && python -mpip install -e . && python -m hotwheels.checkup hotwheels/
	    [ ! -z "$pyinsta" ] && python -mpip install -e .[edit] && python -m hotwheels.checkup hotwheels/
	fi
	fi
        popd
        popd
    done
    done