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() {
68
68
69
69
export DEBIAN_FRONTEND=noninteractive
70
70
71
- check_packages curl ca-certificates gnupg2 dirmngr unzip bash-completion
71
+ check_packages curl ca-certificates gnupg2 dirmngr unzip bash-completion less
72
72
73
73
verify_aws_cli_gpg_signature () {
74
74
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