소스 검색

bin: fix get-aws-login on non-nixos

pulumi from nixpkgs applies a LD_LIBRARY_PATH which is propagated to the
credential helper which breaks showing prompts so we just unset it.
Thomas Dy 2 년 전
부모
커밋
740cd73c8d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      .local/bin/get-aws-login

+ 2 - 0
.local/bin/get-aws-login

@@ -1,5 +1,7 @@
 #!/usr/bin/env bash
 
+unset LD_LIBRARY_PATH
+
 function log {
   if [ -t 1 ]; then
     echo "$@" >&2