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