vcsh template: debug statements and fix var assignments
This commit is contained in:
parent
9c7709b9a4
commit
5721fe7861
1 changed files with 3 additions and 2 deletions
|
@ -5,16 +5,17 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
repoHttps = "https://gitlab.com/steveeJ/dotfiles.git";
|
|
||||||
repoSsh = "git@gitlab.com:/steveeJ/dotfiles.git";
|
|
||||||
repoBareLocal = pkgs.runCommand "fetchbare" {
|
repoBareLocal = pkgs.runCommand "fetchbare" {
|
||||||
outputHashMode = "recursive";
|
outputHashMode = "recursive";
|
||||||
outputHashAlgo = "sha256";
|
outputHashAlgo = "sha256";
|
||||||
outputHash = "0000000000000000000000000000000000000000000000000000";
|
outputHash = "0000000000000000000000000000000000000000000000000000";
|
||||||
} ''
|
} ''
|
||||||
|
(
|
||||||
|
set -xe
|
||||||
export GIT_SSL_CAINFO=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
|
export GIT_SSL_CAINFO=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
|
||||||
export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
|
export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
|
||||||
${pkgs.git}/bin/git clone --mirror ${repoHttps} $out
|
${pkgs.git}/bin/git clone --mirror ${repoHttps} $out
|
||||||
|
)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
in pkgs.writeScript "activation-script" ''
|
in pkgs.writeScript "activation-script" ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue