diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-11-01 21:28:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 21:28:41 +0300 |
commit | a94558576cea2cb27d6cb9de331d21413ec7abb0 (patch) | |
tree | f83d9e9b207375ceee82520b1a9cebd0b37a26f5 /src/oryx/install.sh | |
parent | 268368beeb998fd57d00f258188145b5d1e30a78 (diff) |
Oryx - git clone: Pin to an older commit (#253)
pin: git clone
Diffstat (limited to 'src/oryx/install.sh')
-rwxr-xr-x | src/oryx/install.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/oryx/install.sh b/src/oryx/install.sh index 054983a..f613cf0 100755 --- a/src/oryx/install.sh +++ b/src/oryx/install.sh @@ -146,7 +146,12 @@ GIT_ORYX=/opt/tmp/oryx-repo mkdir -p ${BUILD_SCRIPT_GENERATOR} mkdir -p ${ORYX} -git clone --depth=1 https://github.com/microsoft/Oryx $GIT_ORYX +git clone https://github.com/microsoft/Oryx $GIT_ORYX +cd $GIT_ORYX + +# https://github.com/microsoft/Oryx/commit/74e4830b3636e5cfbce5b3e3358bd5bb66a87f45 is breaking the `oryx` tool +# Pinning to a previous working commit until the upstream issue is fixed. +git reset --hard 2b19efca9729673fc259e6a817be3cc0bb73b9d5 $GIT_ORYX/build/buildSln.sh |