diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-30T14·30+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-31T08·46+0000 |
commit | e9686f84d9be4aa5adace6ff531ff00558239f75 (patch) | |
tree | 25815b9e62b008b51e4878b51189ae17a5909de5 /tools/releases | |
parent | 113910906330a80385885fea49d57e9daaecabad (diff) |
fix(views/kit): communicate :unsign in the tvl-kit URL directly r/6064
Instead of prepending :unsign to all URLs in josh-proxy, and for all calls to filteredGitPush, explicitly use it only in the filter we use for the `export-kit` extraStep. This means, people cloning tvl-kit via > https://code.tvl.fyi/depot.git:workspace=views/kit.git now need to update the URL to point to > https://code.tvl.fyi/depot.git:unsign:workspace=views/kit.git instead. git@github.com:tvlfyi/kit.git will keep the same hashes, as it's updated to export the unsigned workspace view of it. This is less invasive than dooming every josh workspace to have to strip signatures. Change-Id: I6de05182fad4c3695081388c3bbf37306521d255 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8369 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tools/releases')
-rw-r--r-- | tools/releases/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/releases/default.nix b/tools/releases/default.nix index aedf396aeef1..d38ca0b5d8be 100644 --- a/tools/releases/default.nix +++ b/tools/releases/default.nix @@ -19,8 +19,8 @@ in set -e export PATH="${makeBinPath [ pkgs.git depot.third_party.josh ]}:$PATH" - echo 'Filtering depot through :unsign ${filter}' - josh-filter ':unsign ${filter}' + echo 'Filtering depot through ${filter}' + josh-filter '${filter}' echo 'Fetching remote to check if a push is needed' git fetch '${remote}' '${ref}' |