Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ fi
printf %s " , $InstallPipCommand" >> "$COMMAND_MANIFEST_FILE"
pip install poetry
echo "Running poetry install..."
InstallPoetryCommand="poetry install --no-dev"
InstallPoetryCommand="poetry install --without dev"
printf %s " , $InstallPoetryCommand" >> "$COMMAND_MANIFEST_FILE"
output=$( ( poetry install --no-dev; exit ${PIPESTATUS[0]} ) 2>&1)
output=$( ( poetry install --without dev; exit ${PIPESTATUS[0]} ) 2>&1)
pythonBuildExitCode=${PIPESTATUS[0]}
set -e
echo "${output}"
Expand Down Expand Up @@ -171,9 +171,9 @@ fi
pip install poetry
START_TIME=$SECONDS
echo "Running poetry install..."
InstallPoetryCommand="poetry install --no-dev"
InstallPoetryCommand="poetry install --without dev"
printf %s " , $InstallPoetryCommand" >> "$COMMAND_MANIFEST_FILE"
output=$( ( poetry install --no-dev; exit ${PIPESTATUS[0]} ) 2>&1 )
output=$( ( poetry install --without dev; exit ${PIPESTATUS[0]} ) 2>&1 )
pythonBuildExitCode=${PIPESTATUS[0]}
ELAPSED_TIME=$(($SECONDS - $START_TIME))
echo "Done in $ELAPSED_TIME sec(s)."
Expand Down