Skip to content

Commit

Permalink
fixed escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
proquickly committed Dec 13, 2024
1 parent f61dcfa commit adc681f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

PROJ="tfgha"
POETRY="/home/ubuntu/.local/bin"
POETRY="/usr/local/bin"
WORKDIR="/home/ubuntu"

# Update package lists
Expand Down Expand Up @@ -36,7 +36,7 @@ sudo -u ubuntu bash
set -e
python3 -m pip install -U poetry
cd "$WORKDIR/$PROJ"
export PATH="$WORKDIR/.local/bin:$PATH"
#export PATH="/usr/local/bin:$PATH"
[ -f poetry.lock ] && rm poetry.lock
$POETRY/poetry install
cd "$WORKDIR/$PROJ/src/$PROJ"
Expand Down

0 comments on commit adc681f

Please sign in to comment.