mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-09 23:00:56 +00:00
009877d67c
* fix: add git to worker image * fix: create config directory in worker image
12 lines
130 B
Bash
Executable File
12 lines
130 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
APP=$1
|
|
|
|
cd /home/frappe/frappe-bench
|
|
|
|
env/bin/pip install -e "apps/$APP"
|
|
|
|
echo "$APP" >>sites/apps.txt
|