Skip to content

Commit

Permalink
Less maven output
Browse files Browse the repository at this point in the history
  • Loading branch information
docwho2 committed Nov 24, 2023
1 parent feb1cb7 commit b5befcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Build up all the libraries
# Exclude modules that SAM builds so it can use SAM cache and speed deploys
run: mvn -B install -DskipTests --no-transfer-progress
run: mvn -B install -DskipTests --no-transfer-progress --quiet

- name: Setup AWS SAM
uses: aws-actions/setup-sam@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ private void createPrompt(final String name, final String text, final VoiceId vo
log.debug("LD_LIBRARY_PATH=" + System.getenv("LD_LIBRARY_PATH"));

// Name of temp for input to sox
final var pollyFile = Path.of("/tmp", "polly_audio.pcm");
final var pollyFile = Path.of("/tmp", UUID.randomUUID().toString() + ".pcm");

// Name of temp for outout of sox
final var wavFile = Path.of("/tmp", name);
Expand Down

0 comments on commit b5befcc

Please sign in to comment.