From: Bart House Date: Sat, 12 Dec 2020 19:47:44 +0000 (-0800) Subject: Fix Azure pipeline introduced by only checking out a single repository. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bbc5cee97f06ff9938fda196d3360ceac914516d;p=nethack 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. --- 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