We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5531ff commit 238f9b3Copy full SHA for 238f9b3
1 file changed
src/oryx/install.sh
@@ -177,7 +177,12 @@ GIT_ORYX=/opt/tmp/oryx-repo
177
mkdir -p ${BUILD_SCRIPT_GENERATOR}
178
mkdir -p ${ORYX}
179
180
-git clone --depth=1 https://github.com/microsoft/Oryx $GIT_ORYX
+# Pin to commit before ISourceRepo.GetFileSize breaking change (2026-01-13)
181
+# See: https://github.com/microsoft/Oryx/commit/21c559437d69cb43fd9b34f01f68c43ea4bce318
182
+git clone https://github.com/microsoft/Oryx $GIT_ORYX
183
+cd $GIT_ORYX
184
+git checkout 0243a804b56d92febdb15cab01f98bbb168baa3b
185
+cd -
186
187
if [[ "${PINNED_SDK_VERSION}" != "" ]]; then
188
cd $GIT_ORYX
0 commit comments