From bbc5cee97f06ff9938fda196d3360ceac914516d Mon Sep 17 00:00:00 2001 From: Bart House Date: Sat, 12 Dec 2020 11:47:44 -0800 Subject: [PATCH] Fix Azure pipeline introduced by only checking out a single repository. If checking out a single repository, the repository is checked out to the path $(Agent.BuildDirectory)\s instead of $(Agent.BuildDirectory)\s\. Modified checkout to hard code path to avoid this change in behavior. --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2c6eda1c5..0b21c2c74 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,6 +21,7 @@ resources: steps: - checkout: git://NetHack/NetHack@NetHack-3.7 # $(Agent.BuildDirectory)\s\NetHack submodules: true + path: NetHack - task: DownloadSecureFile@1 name: storeKey