bugfix: use env shebbang and requirenments failed to install on external modules.
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#!bin/sh
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
export PIP_ROOT_USER_ACTION=ignore
|
export PIP_ROOT_USER_ACTION=ignore
|
||||||
|
|
||||||
|
|||||||
2
run
2
run
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/sh
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if ! [ -d ".git" ] ; then
|
if ! [ -d ".git" ] ; then
|
||||||
git init
|
git init
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -z "${EXTRA_MODULES_REPO}" ]; then
|
if [ -z "${EXTRA_MODULES_REPO}" ]; then
|
||||||
exit
|
exit
|
||||||
@@ -7,6 +8,6 @@ echo "Installing External Modules"
|
|||||||
|
|
||||||
git clone -q "${EXTRA_MODULES_REPO}" "app/modules"
|
git clone -q "${EXTRA_MODULES_REPO}" "app/modules"
|
||||||
|
|
||||||
pip -q install --no-cache-dir -r req*.txt
|
pip -q install --no-cache-dir -r app/modules/req*.txt
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if ! echo "${PATH}" | grep -qi "com.termux"; then
|
if ! echo "${PATH}" | grep -qi "com.termux"; then
|
||||||
echo "Not a termux Env, Skipping..."
|
echo "Not a termux Env, Skipping..."
|
||||||
exit
|
exit
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
dual_mode_arg=""
|
dual_mode_arg=""
|
||||||
|
|
||||||
if [ ! -z "${USE_DUAL_BRANCH}" ]; then
|
if [ ! -z "${USE_DUAL_BRANCH}" ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user