Skip to content

Commit 69776cc

Browse files
authored
Merge pull request #44 from strangest-quark/master
Changing dirs for brew
2 parents 0a56954 + 595d68a commit 69776cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
File renamed without changes.

stackbox-brew.sh renamed to brew/stackbox-brew.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,17 @@ python3_version=$(python3 --version)
114114
if beginswith "Python 3" "$python_version" ;
115115
then
116116
var="$(pip --disable-pip-version-check install -r $installationPath/requirements.txt) > /dev/null "
117-
python $installationPath/stack.py $installationPath ${stack[*]}
117+
python $installationPath/brew/stack-brew.py $installationPath ${stack[*]}
118118
elif beginswith "Python 3" "$python3_version";
119119
then
120120
var="$(pip3 --disable-pip-version-check install -r $installationPath/requirements.txt) > /dev/null"
121-
python3 $installationPath/stack.py $installationPath ${stack[*]}
121+
python3 $installationPath/brew/stack-brew.py $installationPath ${stack[*]}
122122
else
123123
echo "Unable to find a python 3 installation"
124124
fi
125125

126-
docker-compose -f $installationPath/docker-compose.yml down 2> /dev/null > logs/docker-compose-down-log.txt
127-
docker-compose -f $installationPath/docker-compose.yml build > logs/docker-compose-build-log.txt
126+
docker-compose -f $installationPath/docker-compose.yml down 2> /dev/null > $installationPath/logs/docker-compose-down-log.txt
127+
docker-compose -f $installationPath/docker-compose.yml build > $installationPath/logs/docker-compose-build-log.txt
128128

129129
printf "\n"
130130
echo "######## DEPLOYING YOUR STACK ##############"

0 commit comments

Comments
 (0)