fix: noconfirm auto-selects first AUR match

This commit is contained in:
2026-05-08 11:01:02 +01:00
parent d39cdc3fd9
commit 153cca6132
8056 changed files with 1983098 additions and 779 deletions
@@ -0,0 +1,23 @@
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(void) {
if(strcmp(getenv("first"), "something-else") != 0) {
fprintf(stderr, "First envvar is wrong. %s\n", getenv("first"));
return 1;
}
if(strcmp(getenv("second"), "val2") != 0) {
fprintf(stderr, "Second envvar is wrong.\n");
return 1;
}
if(strcmp(getenv("third"), "val3:and_more") != 0) {
fprintf(stderr, "Third envvar is wrong.\n");
return 1;
}
if(strstr(getenv("PATH"), "fakepath:") != NULL) {
fprintf(stderr, "Third envvar is wrong.\n");
return 1;
}
return 0;
}