Skip to content

Commit

Permalink
update pipfile
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMKuehne committed Jul 12, 2024
1 parent d35439e commit 3040c41
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1-02a5f8d9
0.1-d35439e6
7 changes: 3 additions & 4 deletions dev-tools/update_pipenv.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,17 @@

# Description: Automates updating the pipfile


# 1. find out which installation
local lINSTALL=""
INSTALL=""

lINSTALL="deploy"
INSTALL="deploy"

if grep -q "EMBARK_INSTALL=dev" ./.env ; then
INSTALL="dev"
fi

# 2. update pipfile
if [[ lINSTALL == "dev" ]]:
if [[ "${INSTALL}" == "dev" ]]; then
MYSQLCLIENT_LDFLAGS='-L/usr/mysql/lib -lmysqlclient -lssl -lcrypto -lresolv' MYSQLCLIENT_CFLAGS='-I/usr/include/mysql/' PIPENV_VENV_IN_PROJECT=1 pipenv update
else
echo "This is not a developer setup...still trying to update"
Expand Down

0 comments on commit 3040c41

Please sign in to comment.