mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-09-02 19:02:40 +02:00
10 lines
144 B
Bash
10 lines
144 B
Bash
#!/bin/sh
|
|
# Resolve all dependencies that the application requires to run.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
pip3 install -e .
|