Skip to content

Commit

Permalink
Partially respond to camscale feedback
Browse files Browse the repository at this point in the history
- Rename the workflow
- Fix an error message
- Fix unused variable
- docker-compose.yml -> docker-compose.yaml
- Remove obsolete `version` attribute from docker-compose.yaml
  • Loading branch information
ptgott committed Oct 2, 2024
1 parent 4b50754 commit ff46484
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
test-ubuntu-jammy-cloud:
image: ubuntu:22.04
Expand Down
4 changes: 2 additions & 2 deletions assets/install-scripts/install-teleport-tests/run-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function test_tbot() {

function test_upgrader() {
if ! type teleport-upgrade; then
echo "INSTALL_SCRIPT_TEST_FAILURE: upgrader not found"
echo "INSTALL_SCRIPT_TEST_FAILURE: teleport-upgrade not found"
fi
}

Expand All @@ -53,7 +53,7 @@ case $1 in
test_tbot
;;
*)
echo "INSTALL_SCRIPT_TEST_FAILURE: unsupported edition $EDITION"
echo "INSTALL_SCRIPT_TEST_FAILURE: unsupported edition $1"
;;
esac

Expand Down

0 comments on commit ff46484

Please sign in to comment.