Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/dpl/assets/atlas/install
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if ! command -v atlas-upload &>/dev/null ; then
chmod +x $HOME/bin/gimme
fi

if [ -z $GOPATH ]; then
if [ -z "$GOPATH" ]; then
export GOPATH="$HOME/gopath"
else
export GOPATH="$HOME/gopath:$GOPATH"
Expand Down
2 changes: 1 addition & 1 deletion lib/dpl/assets/pypi/install
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
if [ -z ${VIRTUAL_ENV+x} ]; then export PIP_USER=yes; fi &&
if [ -z "${VIRTUAL_ENV}" ]; then export PIP_USER=yes; fi &&
wget -nv -O - https://bootstrap.pypa.io/get-pip.py | python - --no-setuptools --no-wheel &&
pip install --upgrade --ignore-installed %{setuptools_arg} %{twine_arg} %{wheel_arg}