You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Target "${definition.name}" uses use_target: \${{ ${envVarName} }}, but ${envVarName} is not set. Set ${envVarName} to the name of a concrete target (for example, "azure") before running the eval.`,
759
+
);
760
+
}
761
+
762
+
thrownewError(
763
+
`Target "${definition.name}" has an empty use_target value. Point it at a concrete target name before running the eval.`,
764
+
);
765
+
}
766
+
767
+
constnext=definitions.get(resolvedName);
768
+
if(!next){
769
+
if(envVarName){
770
+
thrownewError(
771
+
`Target "${definition.name}" uses use_target: \${{ ${envVarName} }}, which resolved to "${resolvedName}", but no target named "${resolvedName}" exists.`,
772
+
);
773
+
}
774
+
775
+
thrownewError(
776
+
`Target "${definition.name}" uses use_target: "${resolvedName}", but no target named "${resolvedName}" exists.`,
0 commit comments