File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -160,14 +160,15 @@ fn build_system_env_vars() -> Result<Vec<String>> {
160160
161161/// A list of environment variables that don't conform to naming conventions but need to be passed
162162/// through to the `cargo make` invocation.
163- const ENV_VARS : [ & str ; 12 ] = [
163+ const ENV_VARS : [ & str ; 13 ] = [
164164 "ALLOW_MISSING_KEY" ,
165165 "AMI_DATA_FILE_SUFFIX" ,
166166 "CARGO_MAKE_CARGO_ARGS" ,
167167 "CARGO_MAKE_CARGO_LIMIT_JOBS" ,
168168 "CARGO_MAKE_DEFAULT_TESTSYS_KUBECONFIG_PATH" ,
169169 "CARGO_MAKE_TESTSYS_ARGS" ,
170170 "CARGO_MAKE_TESTSYS_KUBECONFIG_ARG" ,
171+ "GO_MODULES" ,
171172 "MARK_OVA_AS_TEMPLATE" ,
172173 "RELEASE_START_TIME" ,
173174 "SSM_DATA_FILE_SUFFIX" ,
@@ -214,6 +215,7 @@ fn test_is_build_system_env() {
214215 assert ! ( is_build_system_env( "TESTSYS_!" ) ) ;
215216 assert ! ( is_build_system_env( "BOOT_CONFIG!" ) ) ;
216217 assert ! ( is_build_system_env( "BOOT_CONFIG_INPUT" ) ) ;
218+ assert ! ( is_build_system_env( "GO_MODULES" ) ) ;
217219 assert ! ( is_build_system_env( "AWS_REGION" ) ) ;
218220 assert ! ( !is_build_system_env( "PATH" ) ) ;
219221 assert ! ( !is_build_system_env( "HOME" ) ) ;
You can’t perform that action at this time.
0 commit comments