File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed
Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ check_packages() {
6868
6969export DEBIAN_FRONTEND=noninteractive
7070
71- check_packages curl ca-certificates gnupg2 dirmngr unzip bash-completion
71+ check_packages curl ca-certificates gnupg2 dirmngr unzip bash-completion less
7272
7373verify_aws_cli_gpg_signature () {
7474 local filePath=$1
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ # Import test library for `check` command
6+ source dev-container-features-test-lib
7+
8+ check " less is installed, pagination works !" less --version
9+ check " less binary installation path" which less
10+ check " Testing paginated output with less" ls -R / | less
11+
12+ # Report result
13+ reportResults
Original file line number Diff line number Diff line change 1+ {
2+ "less_installed" : {
3+ "image" : " mcr.microsoft.com/devcontainers/base:ubuntu" ,
4+ "features" : {
5+ "aws-cli" : {}
6+ }
7+ }
8+ }
You can’t perform that action at this time.
0 commit comments